From b19ad853abac3e08c9b822448ad01c08d6e5f218 Mon Sep 17 00:00:00 2001 From: FnControlOption <70830482+FnControlOption@users.noreply.github.com> Date: Tue, 17 Aug 2021 10:07:41 -0700 Subject: [PATCH] Regenerate files --- src/grammar.json | 26 +- src/parser.c | 66609 ++++++++++++++++++++++++--------------------- 2 files changed, 36159 insertions(+), 30476 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index fc1ca7e8..ba82a554 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4864,7 +4864,7 @@ }, { "type": "PATTERN", - "value": "[^*]*\\*+([^\\/*][^*]*\\*+)*" + "value": "[^*]*\\*+([^/*][^*]*\\*+)*" }, { "type": "STRING", @@ -5028,7 +5028,7 @@ }, { "type": "PATTERN", - "value": "[^\\/\\\\\\[\\n]" + "value": "[^/\\\\\\[\\n]" } ] } @@ -5551,13 +5551,13 @@ "members": [ { "type": "PATTERN", - "value": "[^\\x00-\\x1F\\s0-9:;`\"'@#.,|^&<=>+\\-*\\/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + "value": "[^\\x00-\\x1F\\s0-9:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" }, { "type": "REPEAT", "content": { "type": "PATTERN", - "value": "[^\\x00-\\x1F\\s:;`\"'@#.,|^&<=>+\\-*\\/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + "value": "[^\\x00-\\x1F\\s:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" } } ] @@ -5574,13 +5574,13 @@ }, { "type": "PATTERN", - "value": "[^\\x00-\\x1F\\s0-9:;`\"'@#.,|^&<=>+\\-*\\/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + "value": "[^\\x00-\\x1F\\s0-9:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" }, { "type": "REPEAT", "content": { "type": "PATTERN", - "value": "[^\\x00-\\x1F\\s:;`\"'@#.,|^&<=>+\\-*\\/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + "value": "[^\\x00-\\x1F\\s:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" } } ] @@ -6275,6 +6275,10 @@ "type": "STRING", "value": "async" }, + { + "type": "STRING", + "value": "await" + }, { "type": "STRING", "value": "static" @@ -6516,6 +6520,16 @@ "type": "SYMBOL", "name": "primary_expression" } + ], + [ + { + "type": "SYMBOL", + "name": "primary_expression" + }, + { + "type": "SYMBOL", + "name": "await_expression" + } ] ], "externals": [ diff --git a/src/parser.c b/src/parser.c index cbe29b69..c1341cef 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,8 +6,8 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1385 -#define LARGE_STATE_COUNT 211 +#define STATE_COUNT 1458 +#define LARGE_STATE_COUNT 251 #define SYMBOL_COUNT 242 #define ALIAS_COUNT 5 #define TOKEN_COUNT 125 @@ -2334,7 +2334,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(65); if (lookahead == '!') ADVANCE(154); if (lookahead == '"') ADVANCE(158); - if (lookahead == '#') ADVANCE(2); + if (lookahead == '#') ADVANCE(3); if (lookahead == '$') ADVANCE(195); if (lookahead == '%') ADVANCE(142); if (lookahead == '&') ADVANCE(131); @@ -2391,28 +2391,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(182); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(66); - if (lookahead == '\\') ADVANCE(24); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(197); - END_STATE(); - case 3: - if (lookahead == '!') ADVANCE(153); + if (lookahead == '!') ADVANCE(154); if (lookahead == '"') ADVANCE(158); + if (lookahead == '#') ADVANCE(21); + if (lookahead == '%') ADVANCE(142); + if (lookahead == '&') ADVANCE(131); if (lookahead == '\'') ADVANCE(159); if (lookahead == '(') ADVANCE(73); - if (lookahead == '+') ADVANCE(137); - if (lookahead == '-') ADVANCE(139); + if (lookahead == ')') ADVANCE(74); + if (lookahead == '*') ADVANCE(68); + if (lookahead == '+') ADVANCE(138); + if (lookahead == ',') ADVANCE(71); + if (lookahead == '-') ADVANCE(140); if (lookahead == '.') ADVANCE(100); - if (lookahead == '/') ADVANCE(89); + if (lookahead == '/') ADVANCE(90); if (lookahead == '0') ADVANCE(185); if (lookahead == ':') ADVANCE(76); - if (lookahead == '<') ADVANCE(83); - if (lookahead == '>') ADVANCE(86); + if (lookahead == ';') ADVANCE(75); + if (lookahead == '<') ADVANCE(84); + if (lookahead == '=') ADVANCE(79); + if (lookahead == '>') ADVANCE(87); + if (lookahead == '?') ADVANCE(119); if (lookahead == '@') ADVANCE(198); if (lookahead == '[') ADVANCE(81); if (lookahead == '\\') ADVANCE(25); + if (lookahead == ']') ADVANCE(82); + if (lookahead == '^') ADVANCE(134); if (lookahead == '`') ADVANCE(178); if (lookahead == '{') ADVANCE(70); + if (lookahead == '|') ADVANCE(135); + if (lookahead == '}') ADVANCE(72); if (lookahead == '~') ADVANCE(155); if (lookahead == '\t' || lookahead == '\n' || @@ -2421,47 +2429,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(3) + lookahead == 65279) SKIP(2) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(186); if (lookahead != 0 && - lookahead > '#' && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|' && - lookahead != '}') ADVANCE(196); + lookahead > 31) ADVANCE(196); + END_STATE(); + case 3: + if (lookahead == '!') ADVANCE(66); + if (lookahead == '\\') ADVANCE(24); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(197); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(19); + if (lookahead == '!') ADVANCE(153); if (lookahead == '"') ADVANCE(158); - if (lookahead == '#') ADVANCE(21); - if (lookahead == '%') ADVANCE(142); - if (lookahead == '&') ADVANCE(131); if (lookahead == '\'') ADVANCE(159); if (lookahead == '(') ADVANCE(73); - if (lookahead == ')') ADVANCE(74); - if (lookahead == '*') ADVANCE(68); - if (lookahead == '+') ADVANCE(138); - if (lookahead == ',') ADVANCE(71); - if (lookahead == '-') ADVANCE(140); + if (lookahead == '+') ADVANCE(137); + if (lookahead == '-') ADVANCE(139); if (lookahead == '.') ADVANCE(100); - if (lookahead == '/') ADVANCE(90); + if (lookahead == '/') ADVANCE(89); if (lookahead == '0') ADVANCE(185); if (lookahead == ':') ADVANCE(76); - if (lookahead == ';') ADVANCE(75); - if (lookahead == '<') ADVANCE(84); - if (lookahead == '=') ADVANCE(79); - if (lookahead == '>') ADVANCE(87); - if (lookahead == '?') ADVANCE(119); + if (lookahead == '<') ADVANCE(83); + if (lookahead == '>') ADVANCE(86); if (lookahead == '@') ADVANCE(198); if (lookahead == '[') ADVANCE(81); if (lookahead == '\\') ADVANCE(25); - if (lookahead == ']') ADVANCE(82); - if (lookahead == '^') ADVANCE(134); if (lookahead == '`') ADVANCE(178); if (lookahead == '{') ADVANCE(70); - if (lookahead == '|') ADVANCE(135); - if (lookahead == '}') ADVANCE(72); + if (lookahead == '~') ADVANCE(155); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2472,8 +2468,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(4) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(186); if (lookahead != 0 && - lookahead > 31 && - lookahead != '~') ADVANCE(196); + lookahead > '#' && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|' && + lookahead != '}') ADVANCE(196); END_STATE(); case 5: if (lookahead == '!') ADVANCE(19); @@ -2885,7 +2885,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(65); if (lookahead == '!') ADVANCE(154); if (lookahead == '"') ADVANCE(158); - if (lookahead == '#') ADVANCE(2); + if (lookahead == '#') ADVANCE(3); if (lookahead == '$') ADVANCE(195); if (lookahead == '%') ADVANCE(142); if (lookahead == '&') ADVANCE(131); @@ -2976,7 +2976,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(65); if (lookahead == '!') ADVANCE(153); if (lookahead == '"') ADVANCE(158); - if (lookahead == '#') ADVANCE(2); + if (lookahead == '#') ADVANCE(3); if (lookahead == '\'') ADVANCE(159); if (lookahead == '(') ADVANCE(73); if (lookahead == ')') ADVANCE(74); @@ -4332,22 +4332,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4] = {.lex_state = 64}, [5] = {.lex_state = 64}, [6] = {.lex_state = 64}, - [7] = {.lex_state = 64}, - [8] = {.lex_state = 64}, - [9] = {.lex_state = 64}, + [7] = {.lex_state = 2, .external_lex_state = 2}, + [8] = {.lex_state = 2, .external_lex_state = 2}, + [9] = {.lex_state = 2, .external_lex_state = 2}, [10] = {.lex_state = 64}, - [11] = {.lex_state = 64}, - [12] = {.lex_state = 64}, + [11] = {.lex_state = 2}, + [12] = {.lex_state = 2}, [13] = {.lex_state = 64}, [14] = {.lex_state = 64}, [15] = {.lex_state = 64}, [16] = {.lex_state = 64}, - [17] = {.lex_state = 64}, - [18] = {.lex_state = 64}, - [19] = {.lex_state = 64}, - [20] = {.lex_state = 64}, - [21] = {.lex_state = 64}, - [22] = {.lex_state = 64}, + [17] = {.lex_state = 2, .external_lex_state = 2}, + [18] = {.lex_state = 2}, + [19] = {.lex_state = 2, .external_lex_state = 2}, + [20] = {.lex_state = 2, .external_lex_state = 2}, + [21] = {.lex_state = 2, .external_lex_state = 2}, + [22] = {.lex_state = 2, .external_lex_state = 2}, [23] = {.lex_state = 64}, [24] = {.lex_state = 64}, [25] = {.lex_state = 64}, @@ -4361,49 +4361,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [33] = {.lex_state = 64}, [34] = {.lex_state = 64}, [35] = {.lex_state = 64}, - [36] = {.lex_state = 64}, + [36] = {.lex_state = 2}, [37] = {.lex_state = 64}, [38] = {.lex_state = 64}, [39] = {.lex_state = 64}, [40] = {.lex_state = 64}, [41] = {.lex_state = 64}, [42] = {.lex_state = 64}, - [43] = {.lex_state = 64}, - [44] = {.lex_state = 63}, - [45] = {.lex_state = 63, .external_lex_state = 2}, - [46] = {.lex_state = 63}, - [47] = {.lex_state = 63, .external_lex_state = 2}, - [48] = {.lex_state = 63, .external_lex_state = 2}, - [49] = {.lex_state = 63, .external_lex_state = 2}, - [50] = {.lex_state = 63, .external_lex_state = 2}, - [51] = {.lex_state = 63, .external_lex_state = 2}, - [52] = {.lex_state = 63, .external_lex_state = 2}, - [53] = {.lex_state = 63, .external_lex_state = 2}, - [54] = {.lex_state = 63, .external_lex_state = 2}, - [55] = {.lex_state = 63, .external_lex_state = 2}, - [56] = {.lex_state = 63, .external_lex_state = 2}, - [57] = {.lex_state = 63, .external_lex_state = 2}, - [58] = {.lex_state = 63, .external_lex_state = 2}, - [59] = {.lex_state = 63, .external_lex_state = 2}, - [60] = {.lex_state = 63, .external_lex_state = 2}, + [43] = {.lex_state = 2}, + [44] = {.lex_state = 64}, + [45] = {.lex_state = 64}, + [46] = {.lex_state = 64}, + [47] = {.lex_state = 64}, + [48] = {.lex_state = 64}, + [49] = {.lex_state = 64}, + [50] = {.lex_state = 64}, + [51] = {.lex_state = 2}, + [52] = {.lex_state = 64}, + [53] = {.lex_state = 64}, + [54] = {.lex_state = 64}, + [55] = {.lex_state = 64}, + [56] = {.lex_state = 64}, + [57] = {.lex_state = 64}, + [58] = {.lex_state = 2}, + [59] = {.lex_state = 2}, + [60] = {.lex_state = 63}, [61] = {.lex_state = 63, .external_lex_state = 2}, - [62] = {.lex_state = 64}, - [63] = {.lex_state = 64}, - [64] = {.lex_state = 64}, - [65] = {.lex_state = 64}, - [66] = {.lex_state = 64}, - [67] = {.lex_state = 64}, - [68] = {.lex_state = 64}, - [69] = {.lex_state = 64}, - [70] = {.lex_state = 64}, - [71] = {.lex_state = 64}, - [72] = {.lex_state = 64}, - [73] = {.lex_state = 64}, - [74] = {.lex_state = 64}, - [75] = {.lex_state = 64}, - [76] = {.lex_state = 64}, - [77] = {.lex_state = 64}, - [78] = {.lex_state = 64}, + [62] = {.lex_state = 63}, + [63] = {.lex_state = 63}, + [64] = {.lex_state = 63, .external_lex_state = 2}, + [65] = {.lex_state = 63, .external_lex_state = 2}, + [66] = {.lex_state = 63, .external_lex_state = 2}, + [67] = {.lex_state = 63, .external_lex_state = 2}, + [68] = {.lex_state = 63, .external_lex_state = 2}, + [69] = {.lex_state = 63, .external_lex_state = 2}, + [70] = {.lex_state = 63, .external_lex_state = 2}, + [71] = {.lex_state = 63, .external_lex_state = 2}, + [72] = {.lex_state = 63, .external_lex_state = 2}, + [73] = {.lex_state = 63, .external_lex_state = 2}, + [74] = {.lex_state = 63, .external_lex_state = 2}, + [75] = {.lex_state = 63, .external_lex_state = 2}, + [76] = {.lex_state = 63, .external_lex_state = 2}, + [77] = {.lex_state = 63, .external_lex_state = 2}, + [78] = {.lex_state = 63, .external_lex_state = 2}, [79] = {.lex_state = 64}, [80] = {.lex_state = 64}, [81] = {.lex_state = 64}, @@ -4412,13 +4412,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [84] = {.lex_state = 64}, [85] = {.lex_state = 64}, [86] = {.lex_state = 64}, - [87] = {.lex_state = 64, .external_lex_state = 2}, + [87] = {.lex_state = 64}, [88] = {.lex_state = 64}, - [89] = {.lex_state = 4, .external_lex_state = 2}, + [89] = {.lex_state = 64}, [90] = {.lex_state = 64}, - [91] = {.lex_state = 4, .external_lex_state = 2}, + [91] = {.lex_state = 64}, [92] = {.lex_state = 64}, - [93] = {.lex_state = 4, .external_lex_state = 2}, + [93] = {.lex_state = 64}, [94] = {.lex_state = 64}, [95] = {.lex_state = 64}, [96] = {.lex_state = 64}, @@ -4429,13 +4429,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [101] = {.lex_state = 64}, [102] = {.lex_state = 64}, [103] = {.lex_state = 64}, - [104] = {.lex_state = 3}, - [105] = {.lex_state = 64}, + [104] = {.lex_state = 64}, + [105] = {.lex_state = 64, .external_lex_state = 2}, [106] = {.lex_state = 64}, [107] = {.lex_state = 64}, - [108] = {.lex_state = 64}, - [109] = {.lex_state = 64}, - [110] = {.lex_state = 64}, + [108] = {.lex_state = 2, .external_lex_state = 2}, + [109] = {.lex_state = 2, .external_lex_state = 2}, + [110] = {.lex_state = 2, .external_lex_state = 2}, [111] = {.lex_state = 64}, [112] = {.lex_state = 64}, [113] = {.lex_state = 64}, @@ -4443,13 +4443,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [115] = {.lex_state = 64}, [116] = {.lex_state = 64}, [117] = {.lex_state = 64}, - [118] = {.lex_state = 3}, + [118] = {.lex_state = 64}, [119] = {.lex_state = 64}, - [120] = {.lex_state = 3}, + [120] = {.lex_state = 64}, [121] = {.lex_state = 64}, [122] = {.lex_state = 64}, [123] = {.lex_state = 64}, - [124] = {.lex_state = 3}, + [124] = {.lex_state = 64}, [125] = {.lex_state = 64}, [126] = {.lex_state = 64}, [127] = {.lex_state = 64}, @@ -4465,17 +4465,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [137] = {.lex_state = 64}, [138] = {.lex_state = 64}, [139] = {.lex_state = 64}, - [140] = {.lex_state = 64}, + [140] = {.lex_state = 4}, [141] = {.lex_state = 64}, [142] = {.lex_state = 64}, - [143] = {.lex_state = 64}, + [143] = {.lex_state = 4}, [144] = {.lex_state = 64}, [145] = {.lex_state = 64}, [146] = {.lex_state = 64}, [147] = {.lex_state = 64}, - [148] = {.lex_state = 64}, - [149] = {.lex_state = 64}, - [150] = {.lex_state = 64}, + [148] = {.lex_state = 4}, + [149] = {.lex_state = 4}, + [150] = {.lex_state = 4}, [151] = {.lex_state = 64}, [152] = {.lex_state = 64}, [153] = {.lex_state = 64}, @@ -4523,95 +4523,95 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [195] = {.lex_state = 64}, [196] = {.lex_state = 64}, [197] = {.lex_state = 64}, - [198] = {.lex_state = 4, .external_lex_state = 2}, - [199] = {.lex_state = 4, .external_lex_state = 2}, - [200] = {.lex_state = 4, .external_lex_state = 2}, - [201] = {.lex_state = 4, .external_lex_state = 2}, - [202] = {.lex_state = 4, .external_lex_state = 2}, - [203] = {.lex_state = 4, .external_lex_state = 2}, - [204] = {.lex_state = 4, .external_lex_state = 2}, - [205] = {.lex_state = 4, .external_lex_state = 2}, - [206] = {.lex_state = 4, .external_lex_state = 2}, - [207] = {.lex_state = 4, .external_lex_state = 2}, - [208] = {.lex_state = 4, .external_lex_state = 2}, - [209] = {.lex_state = 64, .external_lex_state = 2}, - [210] = {.lex_state = 64, .external_lex_state = 2}, - [211] = {.lex_state = 4}, + [198] = {.lex_state = 64}, + [199] = {.lex_state = 64}, + [200] = {.lex_state = 64}, + [201] = {.lex_state = 64}, + [202] = {.lex_state = 64}, + [203] = {.lex_state = 64}, + [204] = {.lex_state = 64}, + [205] = {.lex_state = 64}, + [206] = {.lex_state = 64}, + [207] = {.lex_state = 64}, + [208] = {.lex_state = 64}, + [209] = {.lex_state = 64}, + [210] = {.lex_state = 64}, + [211] = {.lex_state = 64}, [212] = {.lex_state = 64}, - [213] = {.lex_state = 4}, + [213] = {.lex_state = 64}, [214] = {.lex_state = 64}, - [215] = {.lex_state = 4, .external_lex_state = 2}, + [215] = {.lex_state = 64}, [216] = {.lex_state = 64}, - [217] = {.lex_state = 4, .external_lex_state = 2}, - [218] = {.lex_state = 4, .external_lex_state = 2}, - [219] = {.lex_state = 4}, - [220] = {.lex_state = 4, .external_lex_state = 2}, - [221] = {.lex_state = 4, .external_lex_state = 2}, - [222] = {.lex_state = 4}, - [223] = {.lex_state = 4, .external_lex_state = 2}, - [224] = {.lex_state = 4, .external_lex_state = 2}, + [217] = {.lex_state = 64}, + [218] = {.lex_state = 64}, + [219] = {.lex_state = 64}, + [220] = {.lex_state = 64}, + [221] = {.lex_state = 64}, + [222] = {.lex_state = 64}, + [223] = {.lex_state = 64}, + [224] = {.lex_state = 64}, [225] = {.lex_state = 64}, - [226] = {.lex_state = 4}, - [227] = {.lex_state = 64, .external_lex_state = 2}, + [226] = {.lex_state = 64}, + [227] = {.lex_state = 64}, [228] = {.lex_state = 64}, - [229] = {.lex_state = 4}, + [229] = {.lex_state = 64}, [230] = {.lex_state = 64}, - [231] = {.lex_state = 64, .external_lex_state = 2}, - [232] = {.lex_state = 64, .external_lex_state = 2}, + [231] = {.lex_state = 64}, + [232] = {.lex_state = 64}, [233] = {.lex_state = 64}, [234] = {.lex_state = 64}, - [235] = {.lex_state = 64, .external_lex_state = 2}, - [236] = {.lex_state = 64, .external_lex_state = 2}, - [237] = {.lex_state = 64, .external_lex_state = 2}, - [238] = {.lex_state = 64, .external_lex_state = 2}, - [239] = {.lex_state = 64}, - [240] = {.lex_state = 64, .external_lex_state = 2}, - [241] = {.lex_state = 64, .external_lex_state = 2}, - [242] = {.lex_state = 64, .external_lex_state = 2}, - [243] = {.lex_state = 64, .external_lex_state = 2}, - [244] = {.lex_state = 64, .external_lex_state = 2}, - [245] = {.lex_state = 64, .external_lex_state = 2}, - [246] = {.lex_state = 64, .external_lex_state = 2}, - [247] = {.lex_state = 64}, - [248] = {.lex_state = 64}, - [249] = {.lex_state = 64}, - [250] = {.lex_state = 64}, - [251] = {.lex_state = 64}, - [252] = {.lex_state = 64}, - [253] = {.lex_state = 64}, - [254] = {.lex_state = 64}, + [235] = {.lex_state = 64}, + [236] = {.lex_state = 2, .external_lex_state = 2}, + [237] = {.lex_state = 2, .external_lex_state = 2}, + [238] = {.lex_state = 2, .external_lex_state = 2}, + [239] = {.lex_state = 2, .external_lex_state = 2}, + [240] = {.lex_state = 2, .external_lex_state = 2}, + [241] = {.lex_state = 2, .external_lex_state = 2}, + [242] = {.lex_state = 2, .external_lex_state = 2}, + [243] = {.lex_state = 2, .external_lex_state = 2}, + [244] = {.lex_state = 2, .external_lex_state = 2}, + [245] = {.lex_state = 2, .external_lex_state = 2}, + [246] = {.lex_state = 2, .external_lex_state = 2}, + [247] = {.lex_state = 2}, + [248] = {.lex_state = 64, .external_lex_state = 2}, + [249] = {.lex_state = 64, .external_lex_state = 2}, + [250] = {.lex_state = 2}, + [251] = {.lex_state = 2, .external_lex_state = 2}, + [252] = {.lex_state = 2, .external_lex_state = 2}, + [253] = {.lex_state = 2, .external_lex_state = 2}, + [254] = {.lex_state = 2}, [255] = {.lex_state = 64}, - [256] = {.lex_state = 64}, + [256] = {.lex_state = 2, .external_lex_state = 2}, [257] = {.lex_state = 64}, - [258] = {.lex_state = 64}, + [258] = {.lex_state = 2, .external_lex_state = 2}, [259] = {.lex_state = 64}, - [260] = {.lex_state = 64}, - [261] = {.lex_state = 64}, - [262] = {.lex_state = 64}, - [263] = {.lex_state = 64}, - [264] = {.lex_state = 64}, - [265] = {.lex_state = 64}, + [260] = {.lex_state = 2, .external_lex_state = 2}, + [261] = {.lex_state = 2, .external_lex_state = 2}, + [262] = {.lex_state = 2}, + [263] = {.lex_state = 2}, + [264] = {.lex_state = 2}, + [265] = {.lex_state = 2}, [266] = {.lex_state = 64}, - [267] = {.lex_state = 64}, - [268] = {.lex_state = 64}, + [267] = {.lex_state = 2}, + [268] = {.lex_state = 64, .external_lex_state = 2}, [269] = {.lex_state = 64}, - [270] = {.lex_state = 64}, - [271] = {.lex_state = 64}, - [272] = {.lex_state = 64}, - [273] = {.lex_state = 64}, - [274] = {.lex_state = 64}, - [275] = {.lex_state = 64}, - [276] = {.lex_state = 64}, - [277] = {.lex_state = 64}, - [278] = {.lex_state = 64}, - [279] = {.lex_state = 64}, - [280] = {.lex_state = 64}, - [281] = {.lex_state = 64}, + [270] = {.lex_state = 64, .external_lex_state = 2}, + [271] = {.lex_state = 64, .external_lex_state = 2}, + [272] = {.lex_state = 64, .external_lex_state = 2}, + [273] = {.lex_state = 64, .external_lex_state = 2}, + [274] = {.lex_state = 64, .external_lex_state = 2}, + [275] = {.lex_state = 64, .external_lex_state = 2}, + [276] = {.lex_state = 64, .external_lex_state = 2}, + [277] = {.lex_state = 64, .external_lex_state = 2}, + [278] = {.lex_state = 64, .external_lex_state = 2}, + [279] = {.lex_state = 64, .external_lex_state = 2}, + [280] = {.lex_state = 64, .external_lex_state = 2}, + [281] = {.lex_state = 64, .external_lex_state = 2}, [282] = {.lex_state = 64}, [283] = {.lex_state = 64}, [284] = {.lex_state = 64}, [285] = {.lex_state = 64}, - [286] = {.lex_state = 64}, + [286] = {.lex_state = 64, .external_lex_state = 2}, [287] = {.lex_state = 64}, [288] = {.lex_state = 64}, [289] = {.lex_state = 64}, @@ -4664,144 +4664,144 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [336] = {.lex_state = 64}, [337] = {.lex_state = 64}, [338] = {.lex_state = 64}, - [339] = {.lex_state = 4, .external_lex_state = 2}, - [340] = {.lex_state = 4, .external_lex_state = 2}, - [341] = {.lex_state = 4, .external_lex_state = 2}, - [342] = {.lex_state = 4}, - [343] = {.lex_state = 4}, - [344] = {.lex_state = 4}, - [345] = {.lex_state = 4}, - [346] = {.lex_state = 4}, - [347] = {.lex_state = 4}, - [348] = {.lex_state = 4}, - [349] = {.lex_state = 4}, - [350] = {.lex_state = 4}, - [351] = {.lex_state = 4}, - [352] = {.lex_state = 4, .external_lex_state = 2}, - [353] = {.lex_state = 4, .external_lex_state = 2}, - [354] = {.lex_state = 4, .external_lex_state = 2}, - [355] = {.lex_state = 4, .external_lex_state = 2}, - [356] = {.lex_state = 4, .external_lex_state = 2}, - [357] = {.lex_state = 4, .external_lex_state = 2}, - [358] = {.lex_state = 4, .external_lex_state = 2}, - [359] = {.lex_state = 4, .external_lex_state = 2}, - [360] = {.lex_state = 4, .external_lex_state = 2}, - [361] = {.lex_state = 4}, - [362] = {.lex_state = 4, .external_lex_state = 2}, - [363] = {.lex_state = 4}, - [364] = {.lex_state = 4}, - [365] = {.lex_state = 4, .external_lex_state = 2}, - [366] = {.lex_state = 4, .external_lex_state = 2}, - [367] = {.lex_state = 4, .external_lex_state = 2}, - [368] = {.lex_state = 4, .external_lex_state = 2}, - [369] = {.lex_state = 4, .external_lex_state = 2}, + [339] = {.lex_state = 64}, + [340] = {.lex_state = 64}, + [341] = {.lex_state = 64}, + [342] = {.lex_state = 64}, + [343] = {.lex_state = 64}, + [344] = {.lex_state = 64}, + [345] = {.lex_state = 64}, + [346] = {.lex_state = 64}, + [347] = {.lex_state = 64}, + [348] = {.lex_state = 64}, + [349] = {.lex_state = 64}, + [350] = {.lex_state = 64}, + [351] = {.lex_state = 64}, + [352] = {.lex_state = 64}, + [353] = {.lex_state = 64}, + [354] = {.lex_state = 64}, + [355] = {.lex_state = 64}, + [356] = {.lex_state = 64}, + [357] = {.lex_state = 64}, + [358] = {.lex_state = 64}, + [359] = {.lex_state = 64}, + [360] = {.lex_state = 64}, + [361] = {.lex_state = 64}, + [362] = {.lex_state = 64}, + [363] = {.lex_state = 64}, + [364] = {.lex_state = 64}, + [365] = {.lex_state = 64}, + [366] = {.lex_state = 64}, + [367] = {.lex_state = 64}, + [368] = {.lex_state = 64}, + [369] = {.lex_state = 64}, [370] = {.lex_state = 64}, [371] = {.lex_state = 64}, - [372] = {.lex_state = 4, .external_lex_state = 2}, - [373] = {.lex_state = 4, .external_lex_state = 2}, + [372] = {.lex_state = 64}, + [373] = {.lex_state = 64}, [374] = {.lex_state = 64}, [375] = {.lex_state = 64}, - [376] = {.lex_state = 4, .external_lex_state = 2}, - [377] = {.lex_state = 4}, - [378] = {.lex_state = 4}, - [379] = {.lex_state = 4}, - [380] = {.lex_state = 4}, - [381] = {.lex_state = 4}, - [382] = {.lex_state = 4}, - [383] = {.lex_state = 63}, - [384] = {.lex_state = 63}, - [385] = {.lex_state = 63}, - [386] = {.lex_state = 4}, - [387] = {.lex_state = 4}, - [388] = {.lex_state = 4}, - [389] = {.lex_state = 63, .external_lex_state = 2}, - [390] = {.lex_state = 63}, - [391] = {.lex_state = 63, .external_lex_state = 2}, - [392] = {.lex_state = 63}, - [393] = {.lex_state = 63}, - [394] = {.lex_state = 63}, - [395] = {.lex_state = 63}, - [396] = {.lex_state = 63}, - [397] = {.lex_state = 63}, - [398] = {.lex_state = 63}, - [399] = {.lex_state = 63}, - [400] = {.lex_state = 63}, - [401] = {.lex_state = 63}, - [402] = {.lex_state = 63}, - [403] = {.lex_state = 63}, - [404] = {.lex_state = 63}, - [405] = {.lex_state = 63}, - [406] = {.lex_state = 63}, - [407] = {.lex_state = 63}, - [408] = {.lex_state = 63, .external_lex_state = 2}, - [409] = {.lex_state = 63}, - [410] = {.lex_state = 63}, - [411] = {.lex_state = 63}, - [412] = {.lex_state = 63}, - [413] = {.lex_state = 63}, - [414] = {.lex_state = 63}, - [415] = {.lex_state = 63}, - [416] = {.lex_state = 63}, + [376] = {.lex_state = 64}, + [377] = {.lex_state = 64}, + [378] = {.lex_state = 64}, + [379] = {.lex_state = 2, .external_lex_state = 2}, + [380] = {.lex_state = 2, .external_lex_state = 2}, + [381] = {.lex_state = 2, .external_lex_state = 2}, + [382] = {.lex_state = 2}, + [383] = {.lex_state = 2}, + [384] = {.lex_state = 2}, + [385] = {.lex_state = 2}, + [386] = {.lex_state = 2}, + [387] = {.lex_state = 2}, + [388] = {.lex_state = 2}, + [389] = {.lex_state = 2}, + [390] = {.lex_state = 2}, + [391] = {.lex_state = 2}, + [392] = {.lex_state = 2, .external_lex_state = 2}, + [393] = {.lex_state = 2, .external_lex_state = 2}, + [394] = {.lex_state = 2, .external_lex_state = 2}, + [395] = {.lex_state = 2, .external_lex_state = 2}, + [396] = {.lex_state = 2, .external_lex_state = 2}, + [397] = {.lex_state = 2, .external_lex_state = 2}, + [398] = {.lex_state = 2, .external_lex_state = 2}, + [399] = {.lex_state = 2, .external_lex_state = 2}, + [400] = {.lex_state = 2, .external_lex_state = 2}, + [401] = {.lex_state = 2, .external_lex_state = 2}, + [402] = {.lex_state = 2, .external_lex_state = 2}, + [403] = {.lex_state = 2, .external_lex_state = 2}, + [404] = {.lex_state = 2}, + [405] = {.lex_state = 2, .external_lex_state = 2}, + [406] = {.lex_state = 2, .external_lex_state = 2}, + [407] = {.lex_state = 2}, + [408] = {.lex_state = 2}, + [409] = {.lex_state = 2, .external_lex_state = 2}, + [410] = {.lex_state = 64}, + [411] = {.lex_state = 2, .external_lex_state = 2}, + [412] = {.lex_state = 2, .external_lex_state = 2}, + [413] = {.lex_state = 64}, + [414] = {.lex_state = 64}, + [415] = {.lex_state = 2, .external_lex_state = 2}, + [416] = {.lex_state = 64}, [417] = {.lex_state = 63}, - [418] = {.lex_state = 63, .external_lex_state = 2}, - [419] = {.lex_state = 63}, + [418] = {.lex_state = 63}, + [419] = {.lex_state = 2}, [420] = {.lex_state = 63}, - [421] = {.lex_state = 63}, - [422] = {.lex_state = 63}, - [423] = {.lex_state = 5}, - [424] = {.lex_state = 63, .external_lex_state = 2}, - [425] = {.lex_state = 63}, - [426] = {.lex_state = 63}, - [427] = {.lex_state = 63}, - [428] = {.lex_state = 63}, - [429] = {.lex_state = 63}, - [430] = {.lex_state = 63}, - [431] = {.lex_state = 63, .external_lex_state = 2}, - [432] = {.lex_state = 63, .external_lex_state = 2}, - [433] = {.lex_state = 63}, + [421] = {.lex_state = 2}, + [422] = {.lex_state = 2}, + [423] = {.lex_state = 2}, + [424] = {.lex_state = 2}, + [425] = {.lex_state = 2}, + [426] = {.lex_state = 2}, + [427] = {.lex_state = 2}, + [428] = {.lex_state = 2}, + [429] = {.lex_state = 2}, + [430] = {.lex_state = 2}, + [431] = {.lex_state = 2}, + [432] = {.lex_state = 2}, + [433] = {.lex_state = 2}, [434] = {.lex_state = 63, .external_lex_state = 2}, [435] = {.lex_state = 63}, - [436] = {.lex_state = 63, .external_lex_state = 2}, + [436] = {.lex_state = 63}, [437] = {.lex_state = 63}, - [438] = {.lex_state = 63}, + [438] = {.lex_state = 63, .external_lex_state = 2}, [439] = {.lex_state = 63}, [440] = {.lex_state = 63}, - [441] = {.lex_state = 63, .external_lex_state = 2}, + [441] = {.lex_state = 63}, [442] = {.lex_state = 63}, [443] = {.lex_state = 63}, - [444] = {.lex_state = 63, .external_lex_state = 2}, + [444] = {.lex_state = 63}, [445] = {.lex_state = 63}, [446] = {.lex_state = 63}, - [447] = {.lex_state = 63, .external_lex_state = 2}, - [448] = {.lex_state = 63, .external_lex_state = 2}, - [449] = {.lex_state = 63, .external_lex_state = 2}, - [450] = {.lex_state = 63, .external_lex_state = 2}, + [447] = {.lex_state = 63}, + [448] = {.lex_state = 63}, + [449] = {.lex_state = 63}, + [450] = {.lex_state = 63}, [451] = {.lex_state = 63, .external_lex_state = 2}, [452] = {.lex_state = 63}, [453] = {.lex_state = 63}, [454] = {.lex_state = 63}, - [455] = {.lex_state = 63, .external_lex_state = 2}, + [455] = {.lex_state = 63}, [456] = {.lex_state = 63}, [457] = {.lex_state = 63}, - [458] = {.lex_state = 63, .external_lex_state = 2}, + [458] = {.lex_state = 63}, [459] = {.lex_state = 63}, - [460] = {.lex_state = 63, .external_lex_state = 2}, + [460] = {.lex_state = 5}, [461] = {.lex_state = 63}, [462] = {.lex_state = 63}, [463] = {.lex_state = 63}, - [464] = {.lex_state = 63}, - [465] = {.lex_state = 63, .external_lex_state = 2}, + [464] = {.lex_state = 63, .external_lex_state = 2}, + [465] = {.lex_state = 63}, [466] = {.lex_state = 63}, [467] = {.lex_state = 63}, [468] = {.lex_state = 63}, [469] = {.lex_state = 63}, - [470] = {.lex_state = 63}, + [470] = {.lex_state = 63, .external_lex_state = 2}, [471] = {.lex_state = 63}, - [472] = {.lex_state = 63, .external_lex_state = 2}, + [472] = {.lex_state = 63}, [473] = {.lex_state = 63}, - [474] = {.lex_state = 63}, - [475] = {.lex_state = 63, .external_lex_state = 2}, - [476] = {.lex_state = 63}, + [474] = {.lex_state = 63, .external_lex_state = 2}, + [475] = {.lex_state = 63}, + [476] = {.lex_state = 63, .external_lex_state = 2}, [477] = {.lex_state = 63}, [478] = {.lex_state = 63}, [479] = {.lex_state = 63}, @@ -4810,55 +4810,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [482] = {.lex_state = 63}, [483] = {.lex_state = 63}, [484] = {.lex_state = 63}, - [485] = {.lex_state = 63, .external_lex_state = 2}, + [485] = {.lex_state = 63}, [486] = {.lex_state = 63, .external_lex_state = 2}, - [487] = {.lex_state = 63}, + [487] = {.lex_state = 63, .external_lex_state = 2}, [488] = {.lex_state = 63}, [489] = {.lex_state = 63, .external_lex_state = 2}, [490] = {.lex_state = 63, .external_lex_state = 2}, [491] = {.lex_state = 63}, - [492] = {.lex_state = 63}, + [492] = {.lex_state = 63, .external_lex_state = 2}, [493] = {.lex_state = 63}, - [494] = {.lex_state = 63, .external_lex_state = 2}, - [495] = {.lex_state = 63, .external_lex_state = 2}, - [496] = {.lex_state = 63, .external_lex_state = 2}, + [494] = {.lex_state = 63}, + [495] = {.lex_state = 63}, + [496] = {.lex_state = 63}, [497] = {.lex_state = 63}, [498] = {.lex_state = 63}, [499] = {.lex_state = 63, .external_lex_state = 2}, [500] = {.lex_state = 63}, - [501] = {.lex_state = 63}, + [501] = {.lex_state = 63, .external_lex_state = 2}, [502] = {.lex_state = 63}, - [503] = {.lex_state = 63, .external_lex_state = 2}, + [503] = {.lex_state = 63}, [504] = {.lex_state = 63}, [505] = {.lex_state = 63, .external_lex_state = 2}, - [506] = {.lex_state = 63, .external_lex_state = 2}, - [507] = {.lex_state = 63}, - [508] = {.lex_state = 63, .external_lex_state = 2}, + [506] = {.lex_state = 63}, + [507] = {.lex_state = 63, .external_lex_state = 2}, + [508] = {.lex_state = 63}, [509] = {.lex_state = 63}, [510] = {.lex_state = 63}, [511] = {.lex_state = 63}, [512] = {.lex_state = 63}, - [513] = {.lex_state = 63}, + [513] = {.lex_state = 63, .external_lex_state = 2}, [514] = {.lex_state = 63}, - [515] = {.lex_state = 63, .external_lex_state = 2}, - [516] = {.lex_state = 63}, - [517] = {.lex_state = 63, .external_lex_state = 2}, - [518] = {.lex_state = 63, .external_lex_state = 2}, + [515] = {.lex_state = 63}, + [516] = {.lex_state = 63, .external_lex_state = 2}, + [517] = {.lex_state = 63}, + [518] = {.lex_state = 63}, [519] = {.lex_state = 63, .external_lex_state = 2}, - [520] = {.lex_state = 63, .external_lex_state = 2}, - [521] = {.lex_state = 63, .external_lex_state = 2}, + [520] = {.lex_state = 63}, + [521] = {.lex_state = 63}, [522] = {.lex_state = 63, .external_lex_state = 2}, [523] = {.lex_state = 63, .external_lex_state = 2}, [524] = {.lex_state = 63}, - [525] = {.lex_state = 63, .external_lex_state = 2}, + [525] = {.lex_state = 63}, [526] = {.lex_state = 63, .external_lex_state = 2}, [527] = {.lex_state = 63, .external_lex_state = 2}, - [528] = {.lex_state = 63, .external_lex_state = 2}, + [528] = {.lex_state = 63}, [529] = {.lex_state = 63, .external_lex_state = 2}, - [530] = {.lex_state = 5, .external_lex_state = 2}, + [530] = {.lex_state = 63, .external_lex_state = 2}, [531] = {.lex_state = 63, .external_lex_state = 2}, - [532] = {.lex_state = 63, .external_lex_state = 2}, - [533] = {.lex_state = 63, .external_lex_state = 2}, + [532] = {.lex_state = 63}, + [533] = {.lex_state = 63}, [534] = {.lex_state = 63, .external_lex_state = 2}, [535] = {.lex_state = 63, .external_lex_state = 2}, [536] = {.lex_state = 63}, @@ -4866,31 +4866,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [538] = {.lex_state = 63}, [539] = {.lex_state = 63, .external_lex_state = 2}, [540] = {.lex_state = 63}, - [541] = {.lex_state = 63, .external_lex_state = 2}, - [542] = {.lex_state = 63, .external_lex_state = 2}, + [541] = {.lex_state = 63}, + [542] = {.lex_state = 63}, [543] = {.lex_state = 63, .external_lex_state = 2}, - [544] = {.lex_state = 63, .external_lex_state = 2}, - [545] = {.lex_state = 63, .external_lex_state = 2}, - [546] = {.lex_state = 63}, - [547] = {.lex_state = 63, .external_lex_state = 2}, - [548] = {.lex_state = 63}, - [549] = {.lex_state = 63, .external_lex_state = 2}, - [550] = {.lex_state = 63, .external_lex_state = 2}, - [551] = {.lex_state = 63, .external_lex_state = 2}, + [544] = {.lex_state = 63}, + [545] = {.lex_state = 63}, + [546] = {.lex_state = 63, .external_lex_state = 2}, + [547] = {.lex_state = 63}, + [548] = {.lex_state = 63, .external_lex_state = 2}, + [549] = {.lex_state = 63}, + [550] = {.lex_state = 63}, + [551] = {.lex_state = 63}, [552] = {.lex_state = 63}, [553] = {.lex_state = 63, .external_lex_state = 2}, - [554] = {.lex_state = 63, .external_lex_state = 2}, - [555] = {.lex_state = 63, .external_lex_state = 2}, + [554] = {.lex_state = 63}, + [555] = {.lex_state = 63}, [556] = {.lex_state = 63}, - [557] = {.lex_state = 63, .external_lex_state = 2}, + [557] = {.lex_state = 63}, [558] = {.lex_state = 63, .external_lex_state = 2}, - [559] = {.lex_state = 63, .external_lex_state = 2}, + [559] = {.lex_state = 63}, [560] = {.lex_state = 63, .external_lex_state = 2}, [561] = {.lex_state = 63, .external_lex_state = 2}, - [562] = {.lex_state = 63}, - [563] = {.lex_state = 63, .external_lex_state = 2}, + [562] = {.lex_state = 63, .external_lex_state = 2}, + [563] = {.lex_state = 63}, [564] = {.lex_state = 63, .external_lex_state = 2}, - [565] = {.lex_state = 63}, + [565] = {.lex_state = 63, .external_lex_state = 2}, [566] = {.lex_state = 63, .external_lex_state = 2}, [567] = {.lex_state = 63, .external_lex_state = 2}, [568] = {.lex_state = 63}, @@ -4901,155 +4901,155 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [573] = {.lex_state = 63, .external_lex_state = 2}, [574] = {.lex_state = 63, .external_lex_state = 2}, [575] = {.lex_state = 63, .external_lex_state = 2}, - [576] = {.lex_state = 63}, - [577] = {.lex_state = 63}, - [578] = {.lex_state = 63}, + [576] = {.lex_state = 63, .external_lex_state = 2}, + [577] = {.lex_state = 63, .external_lex_state = 2}, + [578] = {.lex_state = 63, .external_lex_state = 2}, [579] = {.lex_state = 63, .external_lex_state = 2}, - [580] = {.lex_state = 63}, - [581] = {.lex_state = 63}, - [582] = {.lex_state = 63}, - [583] = {.lex_state = 63, .external_lex_state = 2}, + [580] = {.lex_state = 63, .external_lex_state = 2}, + [581] = {.lex_state = 63, .external_lex_state = 2}, + [582] = {.lex_state = 63, .external_lex_state = 2}, + [583] = {.lex_state = 63}, [584] = {.lex_state = 63}, - [585] = {.lex_state = 63}, - [586] = {.lex_state = 63}, - [587] = {.lex_state = 63, .external_lex_state = 2}, - [588] = {.lex_state = 63}, + [585] = {.lex_state = 63, .external_lex_state = 2}, + [586] = {.lex_state = 63, .external_lex_state = 2}, + [587] = {.lex_state = 63}, + [588] = {.lex_state = 63, .external_lex_state = 2}, [589] = {.lex_state = 63}, - [590] = {.lex_state = 63}, - [591] = {.lex_state = 63, .external_lex_state = 2}, - [592] = {.lex_state = 63, .external_lex_state = 2}, + [590] = {.lex_state = 5, .external_lex_state = 2}, + [591] = {.lex_state = 63}, + [592] = {.lex_state = 63}, [593] = {.lex_state = 63}, - [594] = {.lex_state = 63}, - [595] = {.lex_state = 63}, + [594] = {.lex_state = 63, .external_lex_state = 2}, + [595] = {.lex_state = 63, .external_lex_state = 2}, [596] = {.lex_state = 63}, [597] = {.lex_state = 63, .external_lex_state = 2}, - [598] = {.lex_state = 63}, + [598] = {.lex_state = 63, .external_lex_state = 2}, [599] = {.lex_state = 63}, - [600] = {.lex_state = 63}, + [600] = {.lex_state = 63, .external_lex_state = 2}, [601] = {.lex_state = 63, .external_lex_state = 2}, - [602] = {.lex_state = 63}, + [602] = {.lex_state = 63, .external_lex_state = 2}, [603] = {.lex_state = 63, .external_lex_state = 2}, - [604] = {.lex_state = 63}, - [605] = {.lex_state = 63, .external_lex_state = 2}, - [606] = {.lex_state = 63}, - [607] = {.lex_state = 63, .external_lex_state = 2}, + [604] = {.lex_state = 63, .external_lex_state = 2}, + [605] = {.lex_state = 63}, + [606] = {.lex_state = 63, .external_lex_state = 2}, + [607] = {.lex_state = 63}, [608] = {.lex_state = 63, .external_lex_state = 2}, [609] = {.lex_state = 63, .external_lex_state = 2}, [610] = {.lex_state = 63, .external_lex_state = 2}, [611] = {.lex_state = 63, .external_lex_state = 2}, - [612] = {.lex_state = 63}, - [613] = {.lex_state = 63}, + [612] = {.lex_state = 63, .external_lex_state = 2}, + [613] = {.lex_state = 63, .external_lex_state = 2}, [614] = {.lex_state = 63, .external_lex_state = 2}, [615] = {.lex_state = 63, .external_lex_state = 2}, - [616] = {.lex_state = 63}, + [616] = {.lex_state = 63, .external_lex_state = 2}, [617] = {.lex_state = 63, .external_lex_state = 2}, - [618] = {.lex_state = 63, .external_lex_state = 2}, + [618] = {.lex_state = 63}, [619] = {.lex_state = 63, .external_lex_state = 2}, [620] = {.lex_state = 63, .external_lex_state = 2}, [621] = {.lex_state = 63, .external_lex_state = 2}, [622] = {.lex_state = 63, .external_lex_state = 2}, [623] = {.lex_state = 63, .external_lex_state = 2}, - [624] = {.lex_state = 63}, - [625] = {.lex_state = 63}, - [626] = {.lex_state = 63, .external_lex_state = 2}, - [627] = {.lex_state = 63}, + [624] = {.lex_state = 63, .external_lex_state = 2}, + [625] = {.lex_state = 63, .external_lex_state = 2}, + [626] = {.lex_state = 63}, + [627] = {.lex_state = 63, .external_lex_state = 2}, [628] = {.lex_state = 63, .external_lex_state = 2}, [629] = {.lex_state = 63, .external_lex_state = 2}, [630] = {.lex_state = 63, .external_lex_state = 2}, - [631] = {.lex_state = 63}, + [631] = {.lex_state = 63, .external_lex_state = 2}, [632] = {.lex_state = 63, .external_lex_state = 2}, - [633] = {.lex_state = 63}, - [634] = {.lex_state = 63}, + [633] = {.lex_state = 63, .external_lex_state = 2}, + [634] = {.lex_state = 63, .external_lex_state = 2}, [635] = {.lex_state = 63, .external_lex_state = 2}, - [636] = {.lex_state = 63}, - [637] = {.lex_state = 63, .external_lex_state = 2}, + [636] = {.lex_state = 63, .external_lex_state = 2}, + [637] = {.lex_state = 63}, [638] = {.lex_state = 63, .external_lex_state = 2}, [639] = {.lex_state = 63, .external_lex_state = 2}, - [640] = {.lex_state = 63, .external_lex_state = 2}, - [641] = {.lex_state = 63}, - [642] = {.lex_state = 63}, - [643] = {.lex_state = 63}, + [640] = {.lex_state = 63}, + [641] = {.lex_state = 63, .external_lex_state = 2}, + [642] = {.lex_state = 63, .external_lex_state = 2}, + [643] = {.lex_state = 63, .external_lex_state = 2}, [644] = {.lex_state = 63}, - [645] = {.lex_state = 63}, - [646] = {.lex_state = 63}, + [645] = {.lex_state = 63, .external_lex_state = 2}, + [646] = {.lex_state = 63, .external_lex_state = 2}, [647] = {.lex_state = 63}, [648] = {.lex_state = 63}, - [649] = {.lex_state = 63}, + [649] = {.lex_state = 63, .external_lex_state = 2}, [650] = {.lex_state = 63}, - [651] = {.lex_state = 63}, - [652] = {.lex_state = 63}, - [653] = {.lex_state = 63}, + [651] = {.lex_state = 63, .external_lex_state = 2}, + [652] = {.lex_state = 63, .external_lex_state = 2}, + [653] = {.lex_state = 63, .external_lex_state = 2}, [654] = {.lex_state = 63}, - [655] = {.lex_state = 63}, - [656] = {.lex_state = 64}, - [657] = {.lex_state = 64}, - [658] = {.lex_state = 64}, - [659] = {.lex_state = 64}, - [660] = {.lex_state = 64}, - [661] = {.lex_state = 64}, - [662] = {.lex_state = 64}, - [663] = {.lex_state = 64}, - [664] = {.lex_state = 64}, - [665] = {.lex_state = 64}, - [666] = {.lex_state = 64}, - [667] = {.lex_state = 64}, - [668] = {.lex_state = 64}, - [669] = {.lex_state = 64}, - [670] = {.lex_state = 64}, - [671] = {.lex_state = 64}, - [672] = {.lex_state = 64}, - [673] = {.lex_state = 64}, - [674] = {.lex_state = 64}, - [675] = {.lex_state = 64}, - [676] = {.lex_state = 64}, - [677] = {.lex_state = 64}, - [678] = {.lex_state = 64}, - [679] = {.lex_state = 64}, - [680] = {.lex_state = 64}, - [681] = {.lex_state = 64}, - [682] = {.lex_state = 64}, - [683] = {.lex_state = 64}, - [684] = {.lex_state = 64}, - [685] = {.lex_state = 64}, - [686] = {.lex_state = 64}, - [687] = {.lex_state = 64}, - [688] = {.lex_state = 64}, - [689] = {.lex_state = 64}, - [690] = {.lex_state = 64}, - [691] = {.lex_state = 64}, - [692] = {.lex_state = 64}, - [693] = {.lex_state = 64}, - [694] = {.lex_state = 64, .external_lex_state = 2}, - [695] = {.lex_state = 64}, - [696] = {.lex_state = 64}, - [697] = {.lex_state = 64}, - [698] = {.lex_state = 64, .external_lex_state = 2}, - [699] = {.lex_state = 64, .external_lex_state = 2}, - [700] = {.lex_state = 64, .external_lex_state = 2}, - [701] = {.lex_state = 64, .external_lex_state = 2}, - [702] = {.lex_state = 64, .external_lex_state = 2}, - [703] = {.lex_state = 64}, - [704] = {.lex_state = 64}, - [705] = {.lex_state = 64}, - [706] = {.lex_state = 64}, - [707] = {.lex_state = 64}, - [708] = {.lex_state = 64, .external_lex_state = 2}, - [709] = {.lex_state = 64, .external_lex_state = 2}, - [710] = {.lex_state = 64, .external_lex_state = 2}, - [711] = {.lex_state = 64, .external_lex_state = 2}, - [712] = {.lex_state = 64, .external_lex_state = 2}, - [713] = {.lex_state = 64}, - [714] = {.lex_state = 64, .external_lex_state = 2}, - [715] = {.lex_state = 64}, + [655] = {.lex_state = 63, .external_lex_state = 2}, + [656] = {.lex_state = 63}, + [657] = {.lex_state = 63, .external_lex_state = 2}, + [658] = {.lex_state = 63, .external_lex_state = 2}, + [659] = {.lex_state = 63}, + [660] = {.lex_state = 63, .external_lex_state = 2}, + [661] = {.lex_state = 63, .external_lex_state = 2}, + [662] = {.lex_state = 63, .external_lex_state = 2}, + [663] = {.lex_state = 63, .external_lex_state = 2}, + [664] = {.lex_state = 63, .external_lex_state = 2}, + [665] = {.lex_state = 63}, + [666] = {.lex_state = 63}, + [667] = {.lex_state = 63}, + [668] = {.lex_state = 63}, + [669] = {.lex_state = 63}, + [670] = {.lex_state = 63}, + [671] = {.lex_state = 63}, + [672] = {.lex_state = 63}, + [673] = {.lex_state = 63}, + [674] = {.lex_state = 63}, + [675] = {.lex_state = 63}, + [676] = {.lex_state = 63}, + [677] = {.lex_state = 63}, + [678] = {.lex_state = 63}, + [679] = {.lex_state = 63}, + [680] = {.lex_state = 63}, + [681] = {.lex_state = 63}, + [682] = {.lex_state = 63}, + [683] = {.lex_state = 63}, + [684] = {.lex_state = 63}, + [685] = {.lex_state = 63}, + [686] = {.lex_state = 63}, + [687] = {.lex_state = 63}, + [688] = {.lex_state = 63}, + [689] = {.lex_state = 63}, + [690] = {.lex_state = 63}, + [691] = {.lex_state = 63}, + [692] = {.lex_state = 63}, + [693] = {.lex_state = 63}, + [694] = {.lex_state = 63}, + [695] = {.lex_state = 63}, + [696] = {.lex_state = 63}, + [697] = {.lex_state = 63}, + [698] = {.lex_state = 63}, + [699] = {.lex_state = 63}, + [700] = {.lex_state = 63}, + [701] = {.lex_state = 63}, + [702] = {.lex_state = 63}, + [703] = {.lex_state = 63}, + [704] = {.lex_state = 63}, + [705] = {.lex_state = 63}, + [706] = {.lex_state = 63}, + [707] = {.lex_state = 63}, + [708] = {.lex_state = 63}, + [709] = {.lex_state = 63}, + [710] = {.lex_state = 63}, + [711] = {.lex_state = 63}, + [712] = {.lex_state = 63}, + [713] = {.lex_state = 63}, + [714] = {.lex_state = 63}, + [715] = {.lex_state = 63}, [716] = {.lex_state = 63}, - [717] = {.lex_state = 64}, - [718] = {.lex_state = 64}, - [719] = {.lex_state = 64}, - [720] = {.lex_state = 64}, - [721] = {.lex_state = 64}, - [722] = {.lex_state = 64}, + [717] = {.lex_state = 63}, + [718] = {.lex_state = 63}, + [719] = {.lex_state = 63}, + [720] = {.lex_state = 63}, + [721] = {.lex_state = 63}, + [722] = {.lex_state = 63}, [723] = {.lex_state = 64}, - [724] = {.lex_state = 63}, + [724] = {.lex_state = 64}, [725] = {.lex_state = 64}, [726] = {.lex_state = 64}, [727] = {.lex_state = 64}, @@ -5081,367 +5081,367 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [753] = {.lex_state = 64}, [754] = {.lex_state = 64}, [755] = {.lex_state = 64}, - [756] = {.lex_state = 4}, - [757] = {.lex_state = 4}, + [756] = {.lex_state = 64}, + [757] = {.lex_state = 64}, [758] = {.lex_state = 64}, [759] = {.lex_state = 64}, - [760] = {.lex_state = 4}, + [760] = {.lex_state = 64}, [761] = {.lex_state = 64}, [762] = {.lex_state = 64}, [763] = {.lex_state = 64}, - [764] = {.lex_state = 64}, - [765] = {.lex_state = 64}, - [766] = {.lex_state = 64}, + [764] = {.lex_state = 64, .external_lex_state = 2}, + [765] = {.lex_state = 64, .external_lex_state = 2}, + [766] = {.lex_state = 64, .external_lex_state = 2}, [767] = {.lex_state = 64}, - [768] = {.lex_state = 64}, - [769] = {.lex_state = 64}, - [770] = {.lex_state = 64}, - [771] = {.lex_state = 64}, - [772] = {.lex_state = 64}, - [773] = {.lex_state = 64}, + [768] = {.lex_state = 64, .external_lex_state = 2}, + [769] = {.lex_state = 64, .external_lex_state = 2}, + [770] = {.lex_state = 64, .external_lex_state = 2}, + [771] = {.lex_state = 64, .external_lex_state = 2}, + [772] = {.lex_state = 64, .external_lex_state = 2}, + [773] = {.lex_state = 64, .external_lex_state = 2}, [774] = {.lex_state = 64}, [775] = {.lex_state = 64}, - [776] = {.lex_state = 64}, - [777] = {.lex_state = 16}, - [778] = {.lex_state = 16}, - [779] = {.lex_state = 16}, - [780] = {.lex_state = 16}, - [781] = {.lex_state = 16}, - [782] = {.lex_state = 17}, - [783] = {.lex_state = 17}, - [784] = {.lex_state = 16}, - [785] = {.lex_state = 17}, - [786] = {.lex_state = 16}, - [787] = {.lex_state = 16}, - [788] = {.lex_state = 17}, - [789] = {.lex_state = 16}, - [790] = {.lex_state = 17}, - [791] = {.lex_state = 16}, - [792] = {.lex_state = 17}, + [776] = {.lex_state = 64, .external_lex_state = 2}, + [777] = {.lex_state = 64}, + [778] = {.lex_state = 64, .external_lex_state = 2}, + [779] = {.lex_state = 64, .external_lex_state = 2}, + [780] = {.lex_state = 64}, + [781] = {.lex_state = 64}, + [782] = {.lex_state = 2}, + [783] = {.lex_state = 64}, + [784] = {.lex_state = 64}, + [785] = {.lex_state = 64}, + [786] = {.lex_state = 64}, + [787] = {.lex_state = 64}, + [788] = {.lex_state = 64}, + [789] = {.lex_state = 64}, + [790] = {.lex_state = 64}, + [791] = {.lex_state = 64}, + [792] = {.lex_state = 64}, [793] = {.lex_state = 64}, - [794] = {.lex_state = 17}, - [795] = {.lex_state = 16}, + [794] = {.lex_state = 64}, + [795] = {.lex_state = 64}, [796] = {.lex_state = 64}, - [797] = {.lex_state = 16}, - [798] = {.lex_state = 17}, - [799] = {.lex_state = 16}, - [800] = {.lex_state = 17}, - [801] = {.lex_state = 16}, - [802] = {.lex_state = 17}, - [803] = {.lex_state = 16}, - [804] = {.lex_state = 16}, - [805] = {.lex_state = 16}, - [806] = {.lex_state = 16}, - [807] = {.lex_state = 16}, - [808] = {.lex_state = 16}, - [809] = {.lex_state = 16}, - [810] = {.lex_state = 16}, - [811] = {.lex_state = 16}, - [812] = {.lex_state = 16}, - [813] = {.lex_state = 17}, - [814] = {.lex_state = 16}, - [815] = {.lex_state = 17}, - [816] = {.lex_state = 17}, - [817] = {.lex_state = 16}, - [818] = {.lex_state = 17}, - [819] = {.lex_state = 16}, - [820] = {.lex_state = 16}, - [821] = {.lex_state = 16}, - [822] = {.lex_state = 16}, - [823] = {.lex_state = 17}, - [824] = {.lex_state = 17}, - [825] = {.lex_state = 17}, - [826] = {.lex_state = 16}, - [827] = {.lex_state = 16}, - [828] = {.lex_state = 16}, + [797] = {.lex_state = 64}, + [798] = {.lex_state = 64}, + [799] = {.lex_state = 64}, + [800] = {.lex_state = 64}, + [801] = {.lex_state = 64}, + [802] = {.lex_state = 2}, + [803] = {.lex_state = 64}, + [804] = {.lex_state = 64}, + [805] = {.lex_state = 64}, + [806] = {.lex_state = 64}, + [807] = {.lex_state = 64}, + [808] = {.lex_state = 64}, + [809] = {.lex_state = 64}, + [810] = {.lex_state = 64}, + [811] = {.lex_state = 64}, + [812] = {.lex_state = 64}, + [813] = {.lex_state = 64}, + [814] = {.lex_state = 64}, + [815] = {.lex_state = 64}, + [816] = {.lex_state = 64}, + [817] = {.lex_state = 64}, + [818] = {.lex_state = 64}, + [819] = {.lex_state = 64}, + [820] = {.lex_state = 64}, + [821] = {.lex_state = 64}, + [822] = {.lex_state = 64}, + [823] = {.lex_state = 64}, + [824] = {.lex_state = 64}, + [825] = {.lex_state = 64}, + [826] = {.lex_state = 64}, + [827] = {.lex_state = 64}, + [828] = {.lex_state = 64}, [829] = {.lex_state = 64}, [830] = {.lex_state = 64}, - [831] = {.lex_state = 64}, + [831] = {.lex_state = 2}, [832] = {.lex_state = 64}, - [833] = {.lex_state = 16}, - [834] = {.lex_state = 0}, - [835] = {.lex_state = 0}, + [833] = {.lex_state = 2}, + [834] = {.lex_state = 64}, + [835] = {.lex_state = 2}, [836] = {.lex_state = 64}, [837] = {.lex_state = 64}, - [838] = {.lex_state = 64}, - [839] = {.lex_state = 0}, - [840] = {.lex_state = 0}, + [838] = {.lex_state = 2}, + [839] = {.lex_state = 64}, + [840] = {.lex_state = 64}, [841] = {.lex_state = 64}, [842] = {.lex_state = 64}, [843] = {.lex_state = 64}, [844] = {.lex_state = 64}, - [845] = {.lex_state = 0}, - [846] = {.lex_state = 64}, - [847] = {.lex_state = 0}, - [848] = {.lex_state = 64, .external_lex_state = 2}, - [849] = {.lex_state = 64}, - [850] = {.lex_state = 8, .external_lex_state = 3}, - [851] = {.lex_state = 0, .external_lex_state = 2}, - [852] = {.lex_state = 64}, - [853] = {.lex_state = 64, .external_lex_state = 2}, + [845] = {.lex_state = 16}, + [846] = {.lex_state = 16}, + [847] = {.lex_state = 16}, + [848] = {.lex_state = 16}, + [849] = {.lex_state = 17}, + [850] = {.lex_state = 16}, + [851] = {.lex_state = 16}, + [852] = {.lex_state = 17}, + [853] = {.lex_state = 16}, [854] = {.lex_state = 16}, - [855] = {.lex_state = 16}, - [856] = {.lex_state = 16}, - [857] = {.lex_state = 64, .external_lex_state = 2}, - [858] = {.lex_state = 16}, - [859] = {.lex_state = 8, .external_lex_state = 3}, + [855] = {.lex_state = 17}, + [856] = {.lex_state = 17}, + [857] = {.lex_state = 16}, + [858] = {.lex_state = 17}, + [859] = {.lex_state = 64}, [860] = {.lex_state = 16}, - [861] = {.lex_state = 64, .external_lex_state = 2}, - [862] = {.lex_state = 64, .external_lex_state = 2}, - [863] = {.lex_state = 16}, - [864] = {.lex_state = 16}, - [865] = {.lex_state = 0, .external_lex_state = 2}, - [866] = {.lex_state = 8, .external_lex_state = 3}, - [867] = {.lex_state = 8, .external_lex_state = 3}, + [861] = {.lex_state = 64}, + [862] = {.lex_state = 16}, + [863] = {.lex_state = 17}, + [864] = {.lex_state = 17}, + [865] = {.lex_state = 16}, + [866] = {.lex_state = 17}, + [867] = {.lex_state = 16}, [868] = {.lex_state = 16}, - [869] = {.lex_state = 64}, - [870] = {.lex_state = 64, .external_lex_state = 2}, - [871] = {.lex_state = 0, .external_lex_state = 2}, - [872] = {.lex_state = 0, .external_lex_state = 2}, - [873] = {.lex_state = 64}, - [874] = {.lex_state = 8, .external_lex_state = 3}, - [875] = {.lex_state = 16}, - [876] = {.lex_state = 16}, - [877] = {.lex_state = 16}, - [878] = {.lex_state = 64}, + [869] = {.lex_state = 16}, + [870] = {.lex_state = 16}, + [871] = {.lex_state = 17}, + [872] = {.lex_state = 16}, + [873] = {.lex_state = 16}, + [874] = {.lex_state = 17}, + [875] = {.lex_state = 17}, + [876] = {.lex_state = 17}, + [877] = {.lex_state = 17}, + [878] = {.lex_state = 16}, [879] = {.lex_state = 16}, [880] = {.lex_state = 16}, [881] = {.lex_state = 16}, - [882] = {.lex_state = 64, .external_lex_state = 2}, - [883] = {.lex_state = 64, .external_lex_state = 2}, - [884] = {.lex_state = 64}, - [885] = {.lex_state = 64}, + [882] = {.lex_state = 17}, + [883] = {.lex_state = 16}, + [884] = {.lex_state = 17}, + [885] = {.lex_state = 16}, [886] = {.lex_state = 16}, - [887] = {.lex_state = 64, .external_lex_state = 2}, + [887] = {.lex_state = 16}, [888] = {.lex_state = 16}, [889] = {.lex_state = 16}, [890] = {.lex_state = 16}, - [891] = {.lex_state = 0}, + [891] = {.lex_state = 16}, [892] = {.lex_state = 16}, [893] = {.lex_state = 16}, - [894] = {.lex_state = 0}, - [895] = {.lex_state = 16}, - [896] = {.lex_state = 16}, - [897] = {.lex_state = 16}, - [898] = {.lex_state = 64}, - [899] = {.lex_state = 64}, - [900] = {.lex_state = 16}, + [894] = {.lex_state = 16}, + [895] = {.lex_state = 17}, + [896] = {.lex_state = 17}, + [897] = {.lex_state = 0}, + [898] = {.lex_state = 0}, + [899] = {.lex_state = 16}, + [900] = {.lex_state = 0}, [901] = {.lex_state = 64}, [902] = {.lex_state = 64}, - [903] = {.lex_state = 16}, + [903] = {.lex_state = 64}, [904] = {.lex_state = 64}, - [905] = {.lex_state = 64}, + [905] = {.lex_state = 64, .external_lex_state = 2}, [906] = {.lex_state = 64}, - [907] = {.lex_state = 16}, - [908] = {.lex_state = 16}, - [909] = {.lex_state = 16}, + [907] = {.lex_state = 64}, + [908] = {.lex_state = 64}, + [909] = {.lex_state = 0}, [910] = {.lex_state = 0}, - [911] = {.lex_state = 16}, - [912] = {.lex_state = 16}, + [911] = {.lex_state = 64}, + [912] = {.lex_state = 64}, [913] = {.lex_state = 64}, - [914] = {.lex_state = 0}, + [914] = {.lex_state = 64}, [915] = {.lex_state = 0}, [916] = {.lex_state = 64}, [917] = {.lex_state = 64}, [918] = {.lex_state = 64}, - [919] = {.lex_state = 16}, - [920] = {.lex_state = 0}, - [921] = {.lex_state = 16}, - [922] = {.lex_state = 0}, + [919] = {.lex_state = 0, .external_lex_state = 2}, + [920] = {.lex_state = 0, .external_lex_state = 2}, + [921] = {.lex_state = 64, .external_lex_state = 2}, + [922] = {.lex_state = 16}, [923] = {.lex_state = 16}, - [924] = {.lex_state = 16}, - [925] = {.lex_state = 0, .external_lex_state = 2}, + [924] = {.lex_state = 8, .external_lex_state = 3}, + [925] = {.lex_state = 64}, [926] = {.lex_state = 16}, [927] = {.lex_state = 64}, - [928] = {.lex_state = 16}, - [929] = {.lex_state = 0, .external_lex_state = 2}, - [930] = {.lex_state = 10}, - [931] = {.lex_state = 7}, - [932] = {.lex_state = 64}, - [933] = {.lex_state = 7}, - [934] = {.lex_state = 10}, - [935] = {.lex_state = 64}, - [936] = {.lex_state = 0}, - [937] = {.lex_state = 10}, - [938] = {.lex_state = 64}, - [939] = {.lex_state = 64}, - [940] = {.lex_state = 64}, - [941] = {.lex_state = 64, .external_lex_state = 2}, + [928] = {.lex_state = 0, .external_lex_state = 2}, + [929] = {.lex_state = 64, .external_lex_state = 2}, + [930] = {.lex_state = 64, .external_lex_state = 2}, + [931] = {.lex_state = 16}, + [932] = {.lex_state = 16}, + [933] = {.lex_state = 8, .external_lex_state = 3}, + [934] = {.lex_state = 16}, + [935] = {.lex_state = 8, .external_lex_state = 3}, + [936] = {.lex_state = 64, .external_lex_state = 2}, + [937] = {.lex_state = 64, .external_lex_state = 2}, + [938] = {.lex_state = 0, .external_lex_state = 2}, + [939] = {.lex_state = 16}, + [940] = {.lex_state = 16}, + [941] = {.lex_state = 16}, [942] = {.lex_state = 64}, [943] = {.lex_state = 16}, - [944] = {.lex_state = 10}, - [945] = {.lex_state = 7}, - [946] = {.lex_state = 64}, + [944] = {.lex_state = 8, .external_lex_state = 3}, + [945] = {.lex_state = 64, .external_lex_state = 2}, + [946] = {.lex_state = 16}, [947] = {.lex_state = 64}, - [948] = {.lex_state = 16}, - [949] = {.lex_state = 0, .external_lex_state = 2}, - [950] = {.lex_state = 64}, - [951] = {.lex_state = 64}, + [948] = {.lex_state = 64, .external_lex_state = 2}, + [949] = {.lex_state = 16}, + [950] = {.lex_state = 8, .external_lex_state = 3}, + [951] = {.lex_state = 16}, [952] = {.lex_state = 64}, - [953] = {.lex_state = 0}, - [954] = {.lex_state = 64}, - [955] = {.lex_state = 64}, - [956] = {.lex_state = 64}, - [957] = {.lex_state = 64}, - [958] = {.lex_state = 8, .external_lex_state = 3}, - [959] = {.lex_state = 0}, - [960] = {.lex_state = 0}, - [961] = {.lex_state = 0}, - [962] = {.lex_state = 64}, - [963] = {.lex_state = 7}, + [953] = {.lex_state = 64, .external_lex_state = 2}, + [954] = {.lex_state = 16}, + [955] = {.lex_state = 16}, + [956] = {.lex_state = 16}, + [957] = {.lex_state = 16}, + [958] = {.lex_state = 64}, + [959] = {.lex_state = 16}, + [960] = {.lex_state = 64}, + [961] = {.lex_state = 16}, + [962] = {.lex_state = 16}, + [963] = {.lex_state = 64}, [964] = {.lex_state = 16}, [965] = {.lex_state = 64}, - [966] = {.lex_state = 10}, - [967] = {.lex_state = 0, .external_lex_state = 2}, - [968] = {.lex_state = 0, .external_lex_state = 2}, + [966] = {.lex_state = 0}, + [967] = {.lex_state = 0}, + [968] = {.lex_state = 64}, [969] = {.lex_state = 64}, - [970] = {.lex_state = 16}, - [971] = {.lex_state = 0}, - [972] = {.lex_state = 64}, - [973] = {.lex_state = 64}, - [974] = {.lex_state = 64}, - [975] = {.lex_state = 7}, - [976] = {.lex_state = 64}, - [977] = {.lex_state = 10}, - [978] = {.lex_state = 0}, - [979] = {.lex_state = 64}, - [980] = {.lex_state = 0, .external_lex_state = 2}, - [981] = {.lex_state = 7}, - [982] = {.lex_state = 0, .external_lex_state = 2}, - [983] = {.lex_state = 64}, - [984] = {.lex_state = 64}, - [985] = {.lex_state = 64}, - [986] = {.lex_state = 0, .external_lex_state = 2}, - [987] = {.lex_state = 64}, + [970] = {.lex_state = 64}, + [971] = {.lex_state = 64}, + [972] = {.lex_state = 16}, + [973] = {.lex_state = 16}, + [974] = {.lex_state = 16}, + [975] = {.lex_state = 16}, + [976] = {.lex_state = 16}, + [977] = {.lex_state = 16}, + [978] = {.lex_state = 64}, + [979] = {.lex_state = 16}, + [980] = {.lex_state = 16}, + [981] = {.lex_state = 0}, + [982] = {.lex_state = 16}, + [983] = {.lex_state = 0}, + [984] = {.lex_state = 16}, + [985] = {.lex_state = 0}, + [986] = {.lex_state = 16}, + [987] = {.lex_state = 0}, [988] = {.lex_state = 0}, - [989] = {.lex_state = 7}, - [990] = {.lex_state = 10}, - [991] = {.lex_state = 64}, - [992] = {.lex_state = 0}, - [993] = {.lex_state = 0}, - [994] = {.lex_state = 17}, - [995] = {.lex_state = 17}, - [996] = {.lex_state = 17}, - [997] = {.lex_state = 0, .external_lex_state = 2}, + [989] = {.lex_state = 64}, + [990] = {.lex_state = 64}, + [991] = {.lex_state = 16}, + [992] = {.lex_state = 16}, + [993] = {.lex_state = 16}, + [994] = {.lex_state = 16}, + [995] = {.lex_state = 64}, + [996] = {.lex_state = 0, .external_lex_state = 2}, + [997] = {.lex_state = 64}, [998] = {.lex_state = 64}, - [999] = {.lex_state = 17}, - [1000] = {.lex_state = 17}, - [1001] = {.lex_state = 17}, - [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 17}, - [1004] = {.lex_state = 64}, - [1005] = {.lex_state = 17}, - [1006] = {.lex_state = 0}, - [1007] = {.lex_state = 64}, - [1008] = {.lex_state = 17}, - [1009] = {.lex_state = 64}, - [1010] = {.lex_state = 64}, - [1011] = {.lex_state = 0}, - [1012] = {.lex_state = 64, .external_lex_state = 2}, - [1013] = {.lex_state = 64}, - [1014] = {.lex_state = 0}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 17}, - [1017] = {.lex_state = 17}, - [1018] = {.lex_state = 64}, - [1019] = {.lex_state = 17}, + [999] = {.lex_state = 10}, + [1000] = {.lex_state = 7}, + [1001] = {.lex_state = 7}, + [1002] = {.lex_state = 64}, + [1003] = {.lex_state = 64}, + [1004] = {.lex_state = 0}, + [1005] = {.lex_state = 64}, + [1006] = {.lex_state = 64}, + [1007] = {.lex_state = 0}, + [1008] = {.lex_state = 64}, + [1009] = {.lex_state = 0}, + [1010] = {.lex_state = 0, .external_lex_state = 2}, + [1011] = {.lex_state = 16}, + [1012] = {.lex_state = 0}, + [1013] = {.lex_state = 0, .external_lex_state = 2}, + [1014] = {.lex_state = 64}, + [1015] = {.lex_state = 16}, + [1016] = {.lex_state = 64}, + [1017] = {.lex_state = 64}, + [1018] = {.lex_state = 0}, + [1019] = {.lex_state = 64}, [1020] = {.lex_state = 64}, - [1021] = {.lex_state = 17}, - [1022] = {.lex_state = 0}, - [1023] = {.lex_state = 0}, + [1021] = {.lex_state = 16}, + [1022] = {.lex_state = 64}, + [1023] = {.lex_state = 64}, [1024] = {.lex_state = 64, .external_lex_state = 2}, - [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 64, .external_lex_state = 2}, - [1028] = {.lex_state = 17}, + [1025] = {.lex_state = 64}, + [1026] = {.lex_state = 64}, + [1027] = {.lex_state = 8, .external_lex_state = 3}, + [1028] = {.lex_state = 0, .external_lex_state = 2}, [1029] = {.lex_state = 64}, - [1030] = {.lex_state = 3}, - [1031] = {.lex_state = 64, .external_lex_state = 2}, - [1032] = {.lex_state = 64}, - [1033] = {.lex_state = 64}, - [1034] = {.lex_state = 64}, - [1035] = {.lex_state = 64, .external_lex_state = 2}, - [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 64}, - [1038] = {.lex_state = 64}, + [1030] = {.lex_state = 64}, + [1031] = {.lex_state = 64}, + [1032] = {.lex_state = 7}, + [1033] = {.lex_state = 10}, + [1034] = {.lex_state = 0, .external_lex_state = 2}, + [1035] = {.lex_state = 10}, + [1036] = {.lex_state = 64}, + [1037] = {.lex_state = 10}, + [1038] = {.lex_state = 7}, [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 0}, + [1040] = {.lex_state = 64}, [1041] = {.lex_state = 0}, - [1042] = {.lex_state = 0}, - [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 0}, + [1042] = {.lex_state = 64}, + [1043] = {.lex_state = 64}, + [1044] = {.lex_state = 10}, + [1045] = {.lex_state = 7}, [1046] = {.lex_state = 64}, - [1047] = {.lex_state = 3}, - [1048] = {.lex_state = 0}, - [1049] = {.lex_state = 0}, - [1050] = {.lex_state = 64}, - [1051] = {.lex_state = 3}, - [1052] = {.lex_state = 64, .external_lex_state = 2}, - [1053] = {.lex_state = 0}, - [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 0}, + [1047] = {.lex_state = 0, .external_lex_state = 2}, + [1048] = {.lex_state = 64}, + [1049] = {.lex_state = 7}, + [1050] = {.lex_state = 10}, + [1051] = {.lex_state = 64}, + [1052] = {.lex_state = 7}, + [1053] = {.lex_state = 10}, + [1054] = {.lex_state = 0, .external_lex_state = 2}, + [1055] = {.lex_state = 16}, + [1056] = {.lex_state = 64}, + [1057] = {.lex_state = 0, .external_lex_state = 2}, + [1058] = {.lex_state = 64}, [1059] = {.lex_state = 0}, [1060] = {.lex_state = 0}, [1061] = {.lex_state = 0}, - [1062] = {.lex_state = 64, .external_lex_state = 2}, - [1063] = {.lex_state = 64}, - [1064] = {.lex_state = 0, .external_lex_state = 2}, - [1065] = {.lex_state = 64, .external_lex_state = 2}, - [1066] = {.lex_state = 64, .external_lex_state = 2}, + [1062] = {.lex_state = 0}, + [1063] = {.lex_state = 0}, + [1064] = {.lex_state = 64}, + [1065] = {.lex_state = 0}, + [1066] = {.lex_state = 0}, [1067] = {.lex_state = 0}, - [1068] = {.lex_state = 17}, - [1069] = {.lex_state = 0}, + [1068] = {.lex_state = 0}, + [1069] = {.lex_state = 64, .external_lex_state = 2}, [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 64}, - [1072] = {.lex_state = 64}, - [1073] = {.lex_state = 64}, - [1074] = {.lex_state = 0}, - [1075] = {.lex_state = 0}, - [1076] = {.lex_state = 17}, + [1071] = {.lex_state = 0}, + [1072] = {.lex_state = 64, .external_lex_state = 2}, + [1073] = {.lex_state = 17}, + [1074] = {.lex_state = 17}, + [1075] = {.lex_state = 64}, + [1076] = {.lex_state = 64}, [1077] = {.lex_state = 64}, - [1078] = {.lex_state = 0}, + [1078] = {.lex_state = 64}, [1079] = {.lex_state = 0}, [1080] = {.lex_state = 0}, - [1081] = {.lex_state = 0}, - [1082] = {.lex_state = 0}, - [1083] = {.lex_state = 0}, - [1084] = {.lex_state = 0}, - [1085] = {.lex_state = 0}, + [1081] = {.lex_state = 17}, + [1082] = {.lex_state = 17}, + [1083] = {.lex_state = 17}, + [1084] = {.lex_state = 17}, + [1085] = {.lex_state = 17}, [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 0}, - [1089] = {.lex_state = 3}, - [1090] = {.lex_state = 0}, + [1087] = {.lex_state = 64}, + [1088] = {.lex_state = 17}, + [1089] = {.lex_state = 17}, + [1090] = {.lex_state = 17}, [1091] = {.lex_state = 0}, - [1092] = {.lex_state = 0}, + [1092] = {.lex_state = 64}, [1093] = {.lex_state = 0}, [1094] = {.lex_state = 0}, [1095] = {.lex_state = 0}, [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 64}, + [1097] = {.lex_state = 0}, [1098] = {.lex_state = 0}, - [1099] = {.lex_state = 17}, + [1099] = {.lex_state = 0}, [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 0}, + [1101] = {.lex_state = 64}, [1102] = {.lex_state = 0}, [1103] = {.lex_state = 0}, - [1104] = {.lex_state = 0}, + [1104] = {.lex_state = 64}, [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 16}, + [1106] = {.lex_state = 0}, [1107] = {.lex_state = 64}, [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 0, .external_lex_state = 2}, - [1110] = {.lex_state = 64}, - [1111] = {.lex_state = 0}, + [1109] = {.lex_state = 64}, + [1110] = {.lex_state = 64, .external_lex_state = 2}, + [1111] = {.lex_state = 64}, [1112] = {.lex_state = 0}, - [1113] = {.lex_state = 0, .external_lex_state = 2}, - [1114] = {.lex_state = 0, .external_lex_state = 2}, + [1113] = {.lex_state = 64}, + [1114] = {.lex_state = 0}, [1115] = {.lex_state = 0}, - [1116] = {.lex_state = 0}, + [1116] = {.lex_state = 64}, [1117] = {.lex_state = 0}, [1118] = {.lex_state = 0}, [1119] = {.lex_state = 0}, @@ -5449,57 +5449,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1121] = {.lex_state = 0}, [1122] = {.lex_state = 0}, [1123] = {.lex_state = 0}, - [1124] = {.lex_state = 0}, - [1125] = {.lex_state = 0}, - [1126] = {.lex_state = 0}, - [1127] = {.lex_state = 0}, + [1124] = {.lex_state = 64}, + [1125] = {.lex_state = 0, .external_lex_state = 2}, + [1126] = {.lex_state = 64}, + [1127] = {.lex_state = 64}, [1128] = {.lex_state = 0}, [1129] = {.lex_state = 0}, [1130] = {.lex_state = 0}, [1131] = {.lex_state = 0}, [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 3}, + [1133] = {.lex_state = 0}, [1134] = {.lex_state = 0}, [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 0}, + [1136] = {.lex_state = 4}, + [1137] = {.lex_state = 17}, [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 0}, + [1139] = {.lex_state = 64}, [1140] = {.lex_state = 0}, [1141] = {.lex_state = 0}, - [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 0}, - [1144] = {.lex_state = 0}, - [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 64}, + [1142] = {.lex_state = 4}, + [1143] = {.lex_state = 17}, + [1144] = {.lex_state = 64, .external_lex_state = 2}, + [1145] = {.lex_state = 64}, + [1146] = {.lex_state = 64, .external_lex_state = 2}, [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 0, .external_lex_state = 2}, + [1148] = {.lex_state = 0}, [1149] = {.lex_state = 0}, - [1150] = {.lex_state = 0}, + [1150] = {.lex_state = 64}, [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 0}, - [1154] = {.lex_state = 0}, + [1152] = {.lex_state = 0, .external_lex_state = 2}, + [1153] = {.lex_state = 64}, + [1154] = {.lex_state = 4}, [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 0, .external_lex_state = 2}, - [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 0, .external_lex_state = 2}, - [1160] = {.lex_state = 0, .external_lex_state = 2}, - [1161] = {.lex_state = 0}, - [1162] = {.lex_state = 0, .external_lex_state = 2}, - [1163] = {.lex_state = 0, .external_lex_state = 2}, - [1164] = {.lex_state = 0}, - [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 64}, - [1167] = {.lex_state = 64}, - [1168] = {.lex_state = 64}, - [1169] = {.lex_state = 0}, + [1156] = {.lex_state = 64, .external_lex_state = 2}, + [1157] = {.lex_state = 0}, + [1158] = {.lex_state = 17}, + [1159] = {.lex_state = 64, .external_lex_state = 2}, + [1160] = {.lex_state = 17}, + [1161] = {.lex_state = 17}, + [1162] = {.lex_state = 17}, + [1163] = {.lex_state = 0}, + [1164] = {.lex_state = 17}, + [1165] = {.lex_state = 4}, + [1166] = {.lex_state = 64, .external_lex_state = 2}, + [1167] = {.lex_state = 64, .external_lex_state = 2}, + [1168] = {.lex_state = 0}, + [1169] = {.lex_state = 64}, [1170] = {.lex_state = 0}, [1171] = {.lex_state = 0}, [1172] = {.lex_state = 64}, [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 0}, + [1174] = {.lex_state = 64}, [1175] = {.lex_state = 0}, [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, @@ -5513,62 +5513,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1185] = {.lex_state = 0}, [1186] = {.lex_state = 0}, [1187] = {.lex_state = 0}, - [1188] = {.lex_state = 64}, + [1188] = {.lex_state = 0}, [1189] = {.lex_state = 0}, - [1190] = {.lex_state = 0, .external_lex_state = 2}, - [1191] = {.lex_state = 0, .external_lex_state = 2}, - [1192] = {.lex_state = 64}, + [1190] = {.lex_state = 0}, + [1191] = {.lex_state = 0}, + [1192] = {.lex_state = 0}, [1193] = {.lex_state = 0}, [1194] = {.lex_state = 0}, - [1195] = {.lex_state = 0, .external_lex_state = 2}, - [1196] = {.lex_state = 0, .external_lex_state = 2}, + [1195] = {.lex_state = 0}, + [1196] = {.lex_state = 0}, [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 0, .external_lex_state = 2}, + [1198] = {.lex_state = 0}, [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 0}, + [1200] = {.lex_state = 64}, [1201] = {.lex_state = 0}, [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 64}, - [1204] = {.lex_state = 0, .external_lex_state = 2}, + [1203] = {.lex_state = 0}, + [1204] = {.lex_state = 4}, [1205] = {.lex_state = 0}, - [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 0}, - [1208] = {.lex_state = 64}, - [1209] = {.lex_state = 0, .external_lex_state = 2}, + [1206] = {.lex_state = 64}, + [1207] = {.lex_state = 0, .external_lex_state = 2}, + [1208] = {.lex_state = 0}, + [1209] = {.lex_state = 0}, [1210] = {.lex_state = 0}, [1211] = {.lex_state = 0}, [1212] = {.lex_state = 0}, - [1213] = {.lex_state = 64}, - [1214] = {.lex_state = 0, .external_lex_state = 2}, + [1213] = {.lex_state = 0}, + [1214] = {.lex_state = 0}, [1215] = {.lex_state = 0}, - [1216] = {.lex_state = 0}, + [1216] = {.lex_state = 0, .external_lex_state = 2}, [1217] = {.lex_state = 0}, [1218] = {.lex_state = 0}, [1219] = {.lex_state = 0}, - [1220] = {.lex_state = 0}, + [1220] = {.lex_state = 0, .external_lex_state = 2}, [1221] = {.lex_state = 0}, - [1222] = {.lex_state = 0}, - [1223] = {.lex_state = 0}, + [1222] = {.lex_state = 64}, + [1223] = {.lex_state = 64}, [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 0}, + [1225] = {.lex_state = 64}, [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 64}, + [1227] = {.lex_state = 0}, [1228] = {.lex_state = 0}, - [1229] = {.lex_state = 64}, - [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 3}, - [1232] = {.lex_state = 0}, + [1229] = {.lex_state = 0, .external_lex_state = 2}, + [1230] = {.lex_state = 64}, + [1231] = {.lex_state = 0, .external_lex_state = 2}, + [1232] = {.lex_state = 64}, [1233] = {.lex_state = 0, .external_lex_state = 2}, [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 3}, + [1235] = {.lex_state = 0, .external_lex_state = 2}, [1236] = {.lex_state = 0}, [1237] = {.lex_state = 0}, [1238] = {.lex_state = 0}, [1239] = {.lex_state = 0}, [1240] = {.lex_state = 64}, - [1241] = {.lex_state = 0}, - [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 0}, + [1241] = {.lex_state = 64}, + [1242] = {.lex_state = 4}, + [1243] = {.lex_state = 0, .external_lex_state = 2}, [1244] = {.lex_state = 0}, [1245] = {.lex_state = 0}, [1246] = {.lex_state = 0}, @@ -5577,17 +5577,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1249] = {.lex_state = 0}, [1250] = {.lex_state = 0}, [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 64}, - [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 3}, - [1256] = {.lex_state = 0}, - [1257] = {.lex_state = 0, .external_lex_state = 2}, - [1258] = {.lex_state = 0}, + [1252] = {.lex_state = 0, .external_lex_state = 2}, + [1253] = {.lex_state = 0}, + [1254] = {.lex_state = 0, .external_lex_state = 2}, + [1255] = {.lex_state = 0}, + [1256] = {.lex_state = 0, .external_lex_state = 2}, + [1257] = {.lex_state = 0}, + [1258] = {.lex_state = 64}, [1259] = {.lex_state = 0}, [1260] = {.lex_state = 0}, [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 0}, + [1262] = {.lex_state = 0, .external_lex_state = 2}, [1263] = {.lex_state = 0}, [1264] = {.lex_state = 0}, [1265] = {.lex_state = 0}, @@ -5605,111 +5605,184 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1277] = {.lex_state = 0}, [1278] = {.lex_state = 0}, [1279] = {.lex_state = 0}, - [1280] = {.lex_state = 0}, + [1280] = {.lex_state = 0, .external_lex_state = 2}, [1281] = {.lex_state = 0}, [1282] = {.lex_state = 0}, - [1283] = {.lex_state = 1}, - [1284] = {.lex_state = 64}, - [1285] = {.lex_state = 64}, - [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 8}, - [1288] = {.lex_state = 0}, - [1289] = {.lex_state = 64}, - [1290] = {.lex_state = 64}, - [1291] = {.lex_state = 64}, - [1292] = {.lex_state = 64}, - [1293] = {.lex_state = 64}, - [1294] = {.lex_state = 64}, - [1295] = {.lex_state = 64}, - [1296] = {.lex_state = 64}, - [1297] = {.lex_state = 64}, - [1298] = {.lex_state = 64}, + [1283] = {.lex_state = 64}, + [1284] = {.lex_state = 0}, + [1285] = {.lex_state = 0}, + [1286] = {.lex_state = 4}, + [1287] = {.lex_state = 64}, + [1288] = {.lex_state = 0, .external_lex_state = 2}, + [1289] = {.lex_state = 0}, + [1290] = {.lex_state = 0}, + [1291] = {.lex_state = 0}, + [1292] = {.lex_state = 0}, + [1293] = {.lex_state = 0}, + [1294] = {.lex_state = 0}, + [1295] = {.lex_state = 0}, + [1296] = {.lex_state = 0}, + [1297] = {.lex_state = 0}, + [1298] = {.lex_state = 0, .external_lex_state = 2}, [1299] = {.lex_state = 0}, [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 64}, + [1301] = {.lex_state = 0}, [1302] = {.lex_state = 0}, [1303] = {.lex_state = 0}, [1304] = {.lex_state = 0}, [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 64}, + [1306] = {.lex_state = 0}, [1307] = {.lex_state = 0}, [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 1}, + [1309] = {.lex_state = 0}, [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 0}, - [1313] = {.lex_state = 64}, - [1314] = {.lex_state = 64}, - [1315] = {.lex_state = 64}, - [1316] = {.lex_state = 0}, - [1317] = {.lex_state = 64}, - [1318] = {.lex_state = 64}, - [1319] = {.lex_state = 64}, - [1320] = {.lex_state = 64}, - [1321] = {.lex_state = 64}, + [1311] = {.lex_state = 64}, + [1312] = {.lex_state = 64}, + [1313] = {.lex_state = 0}, + [1314] = {.lex_state = 4}, + [1315] = {.lex_state = 0, .external_lex_state = 2}, + [1316] = {.lex_state = 0, .external_lex_state = 2}, + [1317] = {.lex_state = 16}, + [1318] = {.lex_state = 0}, + [1319] = {.lex_state = 0}, + [1320] = {.lex_state = 0}, + [1321] = {.lex_state = 0}, [1322] = {.lex_state = 0}, - [1323] = {.lex_state = 64}, - [1324] = {.lex_state = 64}, + [1323] = {.lex_state = 0}, + [1324] = {.lex_state = 0}, [1325] = {.lex_state = 0}, - [1326] = {.lex_state = 64}, - [1327] = {.lex_state = 64}, + [1326] = {.lex_state = 0}, + [1327] = {.lex_state = 0}, [1328] = {.lex_state = 0}, [1329] = {.lex_state = 0}, - [1330] = {.lex_state = 64}, + [1330] = {.lex_state = 0}, [1331] = {.lex_state = 0}, [1332] = {.lex_state = 0}, [1333] = {.lex_state = 0}, [1334] = {.lex_state = 0}, [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 8}, + [1336] = {.lex_state = 0, .external_lex_state = 2}, [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 64}, - [1339] = {.lex_state = 64}, + [1338] = {.lex_state = 0}, + [1339] = {.lex_state = 0}, [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 64}, + [1341] = {.lex_state = 0}, [1342] = {.lex_state = 0}, [1343] = {.lex_state = 0}, - [1344] = {.lex_state = 64}, - [1345] = {.lex_state = 64}, - [1346] = {.lex_state = 64}, - [1347] = {.lex_state = 64}, - [1348] = {.lex_state = 64}, + [1344] = {.lex_state = 0}, + [1345] = {.lex_state = 0, .external_lex_state = 2}, + [1346] = {.lex_state = 0}, + [1347] = {.lex_state = 0}, + [1348] = {.lex_state = 0}, [1349] = {.lex_state = 0}, [1350] = {.lex_state = 0}, - [1351] = {.lex_state = 0}, + [1351] = {.lex_state = 64}, [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 0}, - [1354] = {.lex_state = 64}, - [1355] = {.lex_state = 64}, - [1356] = {.lex_state = 64}, - [1357] = {.lex_state = 0}, + [1353] = {.lex_state = 64}, + [1354] = {.lex_state = 1}, + [1355] = {.lex_state = 0}, + [1356] = {.lex_state = 0}, + [1357] = {.lex_state = 64}, [1358] = {.lex_state = 0}, - [1359] = {.lex_state = 64}, - [1360] = {.lex_state = 64}, + [1359] = {.lex_state = 0}, + [1360] = {.lex_state = 0}, [1361] = {.lex_state = 64}, - [1362] = {.lex_state = 0}, + [1362] = {.lex_state = 64}, [1363] = {.lex_state = 0}, [1364] = {.lex_state = 64}, [1365] = {.lex_state = 64}, [1366] = {.lex_state = 64}, - [1367] = {.lex_state = 0}, + [1367] = {.lex_state = 64}, [1368] = {.lex_state = 64}, - [1369] = {.lex_state = 64}, + [1369] = {.lex_state = 0}, [1370] = {.lex_state = 64}, [1371] = {.lex_state = 64}, [1372] = {.lex_state = 64}, [1373] = {.lex_state = 64}, - [1374] = {.lex_state = 0}, + [1374] = {.lex_state = 64}, [1375] = {.lex_state = 64}, [1376] = {.lex_state = 64}, [1377] = {.lex_state = 64}, - [1378] = {.lex_state = 64}, + [1378] = {.lex_state = 0}, [1379] = {.lex_state = 64}, [1380] = {.lex_state = 0}, - [1381] = {.lex_state = 64}, - [1382] = {.lex_state = 64}, - [1383] = {.lex_state = 64}, - [1384] = {.lex_state = 64}, + [1381] = {.lex_state = 0}, + [1382] = {.lex_state = 0}, + [1383] = {.lex_state = 0}, + [1384] = {.lex_state = 0}, + [1385] = {.lex_state = 0}, + [1386] = {.lex_state = 64}, + [1387] = {.lex_state = 0}, + [1388] = {.lex_state = 0}, + [1389] = {.lex_state = 64}, + [1390] = {.lex_state = 64}, + [1391] = {.lex_state = 64}, + [1392] = {.lex_state = 0}, + [1393] = {.lex_state = 64}, + [1394] = {.lex_state = 64}, + [1395] = {.lex_state = 0}, + [1396] = {.lex_state = 64}, + [1397] = {.lex_state = 64}, + [1398] = {.lex_state = 0}, + [1399] = {.lex_state = 0}, + [1400] = {.lex_state = 0}, + [1401] = {.lex_state = 64}, + [1402] = {.lex_state = 0}, + [1403] = {.lex_state = 64}, + [1404] = {.lex_state = 0}, + [1405] = {.lex_state = 64}, + [1406] = {.lex_state = 64}, + [1407] = {.lex_state = 64}, + [1408] = {.lex_state = 0}, + [1409] = {.lex_state = 64}, + [1410] = {.lex_state = 64}, + [1411] = {.lex_state = 64}, + [1412] = {.lex_state = 0}, + [1413] = {.lex_state = 64}, + [1414] = {.lex_state = 64}, + [1415] = {.lex_state = 64}, + [1416] = {.lex_state = 64}, + [1417] = {.lex_state = 64}, + [1418] = {.lex_state = 64}, + [1419] = {.lex_state = 64}, + [1420] = {.lex_state = 64}, + [1421] = {.lex_state = 64}, + [1422] = {.lex_state = 64}, + [1423] = {.lex_state = 64}, + [1424] = {.lex_state = 0}, + [1425] = {.lex_state = 64}, + [1426] = {.lex_state = 0}, + [1427] = {.lex_state = 64}, + [1428] = {.lex_state = 0}, + [1429] = {.lex_state = 0}, + [1430] = {.lex_state = 64}, + [1431] = {.lex_state = 64}, + [1432] = {.lex_state = 0}, + [1433] = {.lex_state = 0}, + [1434] = {.lex_state = 0}, + [1435] = {.lex_state = 64}, + [1436] = {.lex_state = 0}, + [1437] = {.lex_state = 0}, + [1438] = {.lex_state = 0}, + [1439] = {.lex_state = 0}, + [1440] = {.lex_state = 0}, + [1441] = {.lex_state = 64}, + [1442] = {.lex_state = 0}, + [1443] = {.lex_state = 0}, + [1444] = {.lex_state = 1}, + [1445] = {.lex_state = 0}, + [1446] = {.lex_state = 64}, + [1447] = {.lex_state = 8}, + [1448] = {.lex_state = 8}, + [1449] = {.lex_state = 64}, + [1450] = {.lex_state = 64}, + [1451] = {.lex_state = 0}, + [1452] = {.lex_state = 64}, + [1453] = {.lex_state = 0}, + [1454] = {.lex_state = 0}, + [1455] = {.lex_state = 64}, + [1456] = {.lex_state = 64}, + [1457] = {.lex_state = 64}, }; enum { @@ -5857,71 +5930,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_chars] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(1286), - [sym_export_statement] = STATE(22), - [sym_declaration] = STATE(22), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_for_in_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_try_statement] = STATE(22), - [sym_with_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_debugger_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_throw_statement] = STATE(22), - [sym_empty_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(918), + [sym_program] = STATE(1438), + [sym_export_statement] = STATE(24), + [sym_declaration] = STATE(24), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(24), + [sym_expression_statement] = STATE(24), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_switch_statement] = STATE(24), + [sym_for_statement] = STATE(24), + [sym_for_in_statement] = STATE(24), + [sym_while_statement] = STATE(24), + [sym_do_statement] = STATE(24), + [sym_try_statement] = STATE(24), + [sym_with_statement] = STATE(24), + [sym_break_statement] = STATE(24), + [sym_continue_statement] = STATE(24), + [sym_debugger_statement] = STATE(24), + [sym_return_statement] = STATE(24), + [sym_throw_statement] = STATE(24), + [sym_empty_statement] = STATE(24), + [sym_labeled_statement] = STATE(24), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(968), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_hash_bang_line] = ACTIONS(9), @@ -5980,80 +6053,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(89), }, [2] = { - [sym_export_statement] = STATE(21), - [sym_declaration] = STATE(21), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_for_in_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_try_statement] = STATE(21), - [sym_with_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_debugger_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_throw_statement] = STATE(21), - [sym_empty_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1351), - [sym_object_assignment_pattern] = STATE(1067), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1351), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1351), - [sym_spread_element] = STATE(1040), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(609), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [sym_rest_pattern] = STATE(1067), - [sym_method_definition] = STATE(1040), - [sym_pair] = STATE(1040), - [sym_pair_pattern] = STATE(1067), - [sym__property_name] = STATE(1069), - [sym_computed_property_name] = STATE(1069), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(703), - [aux_sym_object_repeat1] = STATE(1042), - [aux_sym_object_pattern_repeat1] = STATE(1074), + [sym_export_statement] = STATE(29), + [sym_declaration] = STATE(29), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_for_in_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_try_statement] = STATE(29), + [sym_with_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_debugger_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_throw_statement] = STATE(29), + [sym_empty_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1426), + [sym_object_assignment_pattern] = STATE(1079), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1426), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1426), + [sym_spread_element] = STATE(1080), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(608), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [sym_rest_pattern] = STATE(1079), + [sym_method_definition] = STATE(1080), + [sym_pair] = STATE(1080), + [sym_pair_pattern] = STATE(1079), + [sym__property_name] = STATE(1086), + [sym_computed_property_name] = STATE(1086), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_export_statement_repeat1] = STATE(767), + [aux_sym_object_repeat1] = STATE(1091), + [aux_sym_object_pattern_repeat1] = STATE(1097), [sym_identifier] = ACTIONS(91), [anon_sym_export] = ACTIONS(93), [anon_sym_STAR] = ACTIONS(95), @@ -6068,7 +6141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(23), [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(101), [anon_sym_while] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), @@ -6080,14 +6153,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(103), + [anon_sym_async] = ACTIONS(105), [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(107), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), [anon_sym_BANG] = ACTIONS(69), @@ -6101,8 +6174,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(107), - [sym_private_property_identifier] = ACTIONS(109), + [sym_number] = ACTIONS(109), + [sym_private_property_identifier] = ACTIONS(111), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), @@ -6110,91 +6183,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(111), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), + [anon_sym_static] = ACTIONS(113), + [anon_sym_get] = ACTIONS(115), + [anon_sym_set] = ACTIONS(115), }, [3] = { - [sym_export_statement] = STATE(17), - [sym_declaration] = STATE(17), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_for_in_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_try_statement] = STATE(17), - [sym_with_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_debugger_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_throw_statement] = STATE(17), - [sym_empty_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1351), - [sym_object_assignment_pattern] = STATE(1067), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1351), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1351), - [sym_spread_element] = STATE(993), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(609), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [sym_rest_pattern] = STATE(1067), - [sym_method_definition] = STATE(993), - [sym_pair] = STATE(993), - [sym_pair_pattern] = STATE(1067), - [sym__property_name] = STATE(1069), - [sym_computed_property_name] = STATE(1069), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(703), - [aux_sym_object_repeat1] = STATE(1070), - [aux_sym_object_pattern_repeat1] = STATE(1074), - [sym_identifier] = ACTIONS(115), - [anon_sym_export] = ACTIONS(117), + [sym_export_statement] = STATE(23), + [sym_declaration] = STATE(23), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_for_in_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_try_statement] = STATE(23), + [sym_with_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_debugger_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_throw_statement] = STATE(23), + [sym_empty_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1426), + [sym_object_assignment_pattern] = STATE(1079), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1426), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1426), + [sym_spread_element] = STATE(1080), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(608), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [sym_rest_pattern] = STATE(1079), + [sym_method_definition] = STATE(1080), + [sym_pair] = STATE(1080), + [sym_pair_pattern] = STATE(1079), + [sym__property_name] = STATE(1086), + [sym_computed_property_name] = STATE(1086), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(767), + [aux_sym_object_repeat1] = STATE(1091), + [aux_sym_object_pattern_repeat1] = STATE(1097), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), [anon_sym_STAR] = ACTIONS(95), [anon_sym_LBRACE] = ACTIONS(13), [anon_sym_COMMA] = ACTIONS(97), - [anon_sym_RBRACE] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(117), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -6203,7 +6276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(23), [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(101), [anon_sym_while] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), @@ -6215,14 +6288,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(121), + [anon_sym_async] = ACTIONS(105), [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(107), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), [anon_sym_BANG] = ACTIONS(69), @@ -6236,8 +6309,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(107), - [sym_private_property_identifier] = ACTIONS(109), + [sym_number] = ACTIONS(109), + [sym_private_property_identifier] = ACTIONS(111), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), @@ -6245,91 +6318,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(123), - [anon_sym_get] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), + [anon_sym_static] = ACTIONS(113), + [anon_sym_get] = ACTIONS(115), + [anon_sym_set] = ACTIONS(115), }, [4] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_for_in_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_with_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_debugger_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1351), - [sym_object_assignment_pattern] = STATE(1067), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1351), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1351), - [sym_spread_element] = STATE(993), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(609), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [sym_rest_pattern] = STATE(1067), - [sym_method_definition] = STATE(993), - [sym_pair] = STATE(993), - [sym_pair_pattern] = STATE(1067), - [sym__property_name] = STATE(1069), - [sym_computed_property_name] = STATE(1069), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(703), - [aux_sym_object_repeat1] = STATE(1070), - [aux_sym_object_pattern_repeat1] = STATE(1074), - [sym_identifier] = ACTIONS(115), - [anon_sym_export] = ACTIONS(117), + [sym_export_statement] = STATE(23), + [sym_declaration] = STATE(23), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_for_in_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_try_statement] = STATE(23), + [sym_with_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_debugger_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_throw_statement] = STATE(23), + [sym_empty_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1426), + [sym_object_assignment_pattern] = STATE(1079), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1426), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1426), + [sym_spread_element] = STATE(1080), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(608), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [sym_rest_pattern] = STATE(1079), + [sym_method_definition] = STATE(1080), + [sym_pair] = STATE(1080), + [sym_pair_pattern] = STATE(1079), + [sym__property_name] = STATE(1086), + [sym_computed_property_name] = STATE(1086), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(767), + [aux_sym_object_repeat1] = STATE(1091), + [aux_sym_object_pattern_repeat1] = STATE(1097), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), [anon_sym_STAR] = ACTIONS(95), [anon_sym_LBRACE] = ACTIONS(13), [anon_sym_COMMA] = ACTIONS(97), - [anon_sym_RBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(119), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -6338,7 +6411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(23), [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(101), [anon_sym_while] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), @@ -6350,14 +6423,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(121), + [anon_sym_async] = ACTIONS(105), [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(107), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), [anon_sym_BANG] = ACTIONS(69), @@ -6371,8 +6444,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(107), - [sym_private_property_identifier] = ACTIONS(109), + [sym_number] = ACTIONS(109), + [sym_private_property_identifier] = ACTIONS(111), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), @@ -6380,91 +6453,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(123), - [anon_sym_get] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), + [anon_sym_static] = ACTIONS(113), + [anon_sym_get] = ACTIONS(115), + [anon_sym_set] = ACTIONS(115), }, [5] = { - [sym_export_statement] = STATE(17), - [sym_declaration] = STATE(17), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_for_in_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_try_statement] = STATE(17), - [sym_with_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_debugger_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_throw_statement] = STATE(17), - [sym_empty_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1351), - [sym_object_assignment_pattern] = STATE(1067), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1351), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1351), - [sym_spread_element] = STATE(993), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(609), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [sym_rest_pattern] = STATE(1067), - [sym_method_definition] = STATE(993), - [sym_pair] = STATE(993), - [sym_pair_pattern] = STATE(1067), - [sym__property_name] = STATE(1069), - [sym_computed_property_name] = STATE(1069), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(703), - [aux_sym_object_repeat1] = STATE(1070), - [aux_sym_object_pattern_repeat1] = STATE(1074), - [sym_identifier] = ACTIONS(115), - [anon_sym_export] = ACTIONS(117), + [sym_export_statement] = STATE(34), + [sym_declaration] = STATE(34), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_for_in_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_try_statement] = STATE(34), + [sym_with_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_debugger_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_throw_statement] = STATE(34), + [sym_empty_statement] = STATE(34), + [sym_labeled_statement] = STATE(34), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1426), + [sym_object_assignment_pattern] = STATE(1079), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1426), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1426), + [sym_spread_element] = STATE(1065), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(608), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [sym_rest_pattern] = STATE(1079), + [sym_method_definition] = STATE(1065), + [sym_pair] = STATE(1065), + [sym_pair_pattern] = STATE(1079), + [sym__property_name] = STATE(1086), + [sym_computed_property_name] = STATE(1086), + [aux_sym_program_repeat1] = STATE(34), + [aux_sym_export_statement_repeat1] = STATE(767), + [aux_sym_object_repeat1] = STATE(1063), + [aux_sym_object_pattern_repeat1] = STATE(1097), + [sym_identifier] = ACTIONS(121), + [anon_sym_export] = ACTIONS(123), [anon_sym_STAR] = ACTIONS(95), [anon_sym_LBRACE] = ACTIONS(13), [anon_sym_COMMA] = ACTIONS(97), - [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -6473,7 +6546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(23), [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(127), [anon_sym_while] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), @@ -6485,14 +6558,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(121), + [anon_sym_async] = ACTIONS(129), [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(107), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), [anon_sym_BANG] = ACTIONS(69), @@ -6506,8 +6579,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(107), - [sym_private_property_identifier] = ACTIONS(109), + [sym_number] = ACTIONS(109), + [sym_private_property_identifier] = ACTIONS(111), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), @@ -6515,91 +6588,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(123), - [anon_sym_get] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), + [anon_sym_static] = ACTIONS(131), + [anon_sym_get] = ACTIONS(133), + [anon_sym_set] = ACTIONS(133), }, [6] = { - [sym_export_statement] = STATE(21), - [sym_declaration] = STATE(21), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_for_in_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_try_statement] = STATE(21), - [sym_with_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_debugger_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_throw_statement] = STATE(21), - [sym_empty_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1351), - [sym_object_assignment_pattern] = STATE(1067), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1351), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1351), - [sym_spread_element] = STATE(1040), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(609), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [sym_rest_pattern] = STATE(1067), - [sym_method_definition] = STATE(1040), - [sym_pair] = STATE(1040), - [sym_pair_pattern] = STATE(1067), - [sym__property_name] = STATE(1069), - [sym_computed_property_name] = STATE(1069), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(703), - [aux_sym_object_repeat1] = STATE(1042), - [aux_sym_object_pattern_repeat1] = STATE(1074), - [sym_identifier] = ACTIONS(131), - [anon_sym_export] = ACTIONS(133), + [sym_export_statement] = STATE(34), + [sym_declaration] = STATE(34), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_for_in_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_try_statement] = STATE(34), + [sym_with_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_debugger_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_throw_statement] = STATE(34), + [sym_empty_statement] = STATE(34), + [sym_labeled_statement] = STATE(34), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1426), + [sym_object_assignment_pattern] = STATE(1079), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1426), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1426), + [sym_spread_element] = STATE(1065), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(608), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [sym_rest_pattern] = STATE(1079), + [sym_method_definition] = STATE(1065), + [sym_pair] = STATE(1065), + [sym_pair_pattern] = STATE(1079), + [sym__property_name] = STATE(1086), + [sym_computed_property_name] = STATE(1086), + [aux_sym_program_repeat1] = STATE(34), + [aux_sym_export_statement_repeat1] = STATE(767), + [aux_sym_object_repeat1] = STATE(1063), + [aux_sym_object_pattern_repeat1] = STATE(1097), + [sym_identifier] = ACTIONS(135), + [anon_sym_export] = ACTIONS(137), [anon_sym_STAR] = ACTIONS(95), [anon_sym_LBRACE] = ACTIONS(13), [anon_sym_COMMA] = ACTIONS(97), - [anon_sym_RBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -6608,7 +6681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(23), [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(139), [anon_sym_while] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), @@ -6620,14 +6693,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(103), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(135), + [anon_sym_async] = ACTIONS(141), [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(107), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), [anon_sym_BANG] = ACTIONS(69), @@ -6641,8 +6714,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(107), - [sym_private_property_identifier] = ACTIONS(109), + [sym_number] = ACTIONS(109), + [sym_private_property_identifier] = ACTIONS(111), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), @@ -6650,245 +6723,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(137), - [anon_sym_get] = ACTIONS(139), - [anon_sym_set] = ACTIONS(139), + [anon_sym_static] = ACTIONS(143), + [anon_sym_get] = ACTIONS(145), + [anon_sym_set] = ACTIONS(145), }, [7] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(918), - [ts_builtin_sym_end] = ACTIONS(141), - [sym_identifier] = ACTIONS(143), - [anon_sym_export] = ACTIONS(146), - [anon_sym_default] = ACTIONS(149), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_RBRACE] = ACTIONS(141), - [anon_sym_import] = ACTIONS(154), - [anon_sym_var] = ACTIONS(157), - [anon_sym_let] = ACTIONS(160), - [anon_sym_const] = ACTIONS(160), - [anon_sym_if] = ACTIONS(163), - [anon_sym_switch] = ACTIONS(166), - [anon_sym_for] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(172), - [anon_sym_await] = ACTIONS(175), - [anon_sym_while] = ACTIONS(178), - [anon_sym_do] = ACTIONS(181), - [anon_sym_try] = ACTIONS(184), - [anon_sym_with] = ACTIONS(187), - [anon_sym_break] = ACTIONS(190), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_debugger] = ACTIONS(196), - [anon_sym_return] = ACTIONS(199), - [anon_sym_throw] = ACTIONS(202), - [anon_sym_SEMI] = ACTIONS(205), - [anon_sym_case] = ACTIONS(149), - [anon_sym_yield] = ACTIONS(208), - [anon_sym_LBRACK] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_SLASH] = ACTIONS(217), - [anon_sym_class] = ACTIONS(220), - [anon_sym_async] = ACTIONS(223), - [anon_sym_function] = ACTIONS(226), - [anon_sym_new] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(232), - [anon_sym_DASH] = ACTIONS(232), - [anon_sym_BANG] = ACTIONS(235), - [anon_sym_TILDE] = ACTIONS(235), - [anon_sym_typeof] = ACTIONS(238), - [anon_sym_void] = ACTIONS(238), - [anon_sym_delete] = ACTIONS(238), - [anon_sym_PLUS_PLUS] = ACTIONS(241), - [anon_sym_DASH_DASH] = ACTIONS(241), - [anon_sym_DQUOTE] = ACTIONS(244), - [anon_sym_SQUOTE] = ACTIONS(247), + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(513), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [aux_sym_object_repeat1] = STATE(1117), + [aux_sym_object_pattern_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_import] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_await] = ACTIONS(164), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(166), + [anon_sym_yield] = ACTIONS(51), + [anon_sym_EQ] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(250), - [sym_number] = ACTIONS(253), - [sym_this] = ACTIONS(256), - [sym_super] = ACTIONS(256), - [sym_true] = ACTIONS(256), - [sym_false] = ACTIONS(256), - [sym_null] = ACTIONS(256), - [sym_undefined] = ACTIONS(259), - [anon_sym_AT] = ACTIONS(262), - [anon_sym_static] = ACTIONS(265), - [anon_sym_get] = ACTIONS(265), - [anon_sym_set] = ACTIONS(265), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), + [sym__automatic_semicolon] = ACTIONS(155), }, [8] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(918), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(268), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(270), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_case] = ACTIONS(268), + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(513), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [aux_sym_object_repeat1] = STATE(1060), + [aux_sym_object_pattern_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(181), + [anon_sym_import] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_await] = ACTIONS(164), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(166), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(67), [anon_sym_TILDE] = ACTIONS(69), [anon_sym_typeof] = ACTIONS(71), [anon_sym_void] = ACTIONS(71), [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), [anon_sym_DQUOTE] = ACTIONS(75), [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(155), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), @@ -6897,18 +6972,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), + [sym__automatic_semicolon] = ACTIONS(155), }, [9] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(513), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [aux_sym_object_repeat1] = STATE(1060), + [aux_sym_object_pattern_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(183), + [anon_sym_import] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_await] = ACTIONS(164), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(166), + [anon_sym_yield] = ACTIONS(51), + [anon_sym_EQ] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), + [sym__automatic_semicolon] = ACTIONS(155), + }, + [10] = { [sym_export_statement] = STATE(10), [sym_declaration] = STATE(10), - [sym_import] = STATE(575), + [sym_import] = STATE(645), [sym_import_statement] = STATE(10), [sym_expression_statement] = STATE(10), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), [sym_statement_block] = STATE(10), [sym_if_statement] = STATE(10), [sym_switch_statement] = STATE(10), @@ -6925,52 +7126,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(10), [sym_empty_statement] = STATE(10), [sym_labeled_statement] = STATE(10), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(968), + [ts_builtin_sym_end] = ACTIONS(185), + [sym_identifier] = ACTIONS(187), + [anon_sym_export] = ACTIONS(190), + [anon_sym_default] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_RBRACE] = ACTIONS(185), + [anon_sym_import] = ACTIONS(198), + [anon_sym_var] = ACTIONS(201), + [anon_sym_let] = ACTIONS(204), + [anon_sym_const] = ACTIONS(204), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(210), + [anon_sym_for] = ACTIONS(213), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_await] = ACTIONS(219), + [anon_sym_while] = ACTIONS(222), + [anon_sym_do] = ACTIONS(225), + [anon_sym_try] = ACTIONS(228), + [anon_sym_with] = ACTIONS(231), + [anon_sym_break] = ACTIONS(234), + [anon_sym_continue] = ACTIONS(237), + [anon_sym_debugger] = ACTIONS(240), + [anon_sym_return] = ACTIONS(243), + [anon_sym_throw] = ACTIONS(246), + [anon_sym_SEMI] = ACTIONS(249), + [anon_sym_case] = ACTIONS(193), + [anon_sym_yield] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_SLASH] = ACTIONS(261), + [anon_sym_class] = ACTIONS(264), + [anon_sym_async] = ACTIONS(267), + [anon_sym_function] = ACTIONS(270), + [anon_sym_new] = ACTIONS(273), + [anon_sym_PLUS] = ACTIONS(276), + [anon_sym_DASH] = ACTIONS(276), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_typeof] = ACTIONS(282), + [anon_sym_void] = ACTIONS(282), + [anon_sym_delete] = ACTIONS(282), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_SQUOTE] = ACTIONS(291), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(294), + [sym_number] = ACTIONS(297), + [sym_this] = ACTIONS(300), + [sym_super] = ACTIONS(300), + [sym_true] = ACTIONS(300), + [sym_false] = ACTIONS(300), + [sym_null] = ACTIONS(300), + [sym_undefined] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(306), + [anon_sym_static] = ACTIONS(309), + [anon_sym_get] = ACTIONS(309), + [anon_sym_set] = ACTIONS(309), + }, + [11] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(446), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(155), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(155), + [anon_sym_await] = ACTIONS(320), + [anon_sym_in] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_RBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_EQ_GT] = ACTIONS(332), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(336), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [12] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(714), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(155), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(155), + [anon_sym_await] = ACTIONS(358), + [anon_sym_in] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_EQ] = ACTIONS(362), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_RBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_EQ_GT] = ACTIONS(332), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + }, + [13] = { + [sym_export_statement] = STATE(10), + [sym_declaration] = STATE(10), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_switch_statement] = STATE(10), + [sym_for_statement] = STATE(10), + [sym_for_in_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_statement] = STATE(10), + [sym_try_statement] = STATE(10), + [sym_with_statement] = STATE(10), + [sym_break_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_debugger_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_throw_statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym_labeled_statement] = STATE(10), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), [aux_sym_program_repeat1] = STATE(10), - [aux_sym_export_statement_repeat1] = STATE(918), + [aux_sym_export_statement_repeat1] = STATE(968), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(272), + [anon_sym_default] = ACTIONS(376), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(274), + [anon_sym_RBRACE] = ACTIONS(378), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -6990,7 +7561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(45), [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_case] = ACTIONS(272), + [anon_sym_case] = ACTIONS(376), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), @@ -7024,76 +7595,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [10] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(918), + [14] = { + [sym_export_statement] = STATE(16), + [sym_declaration] = STATE(16), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_for_in_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_try_statement] = STATE(16), + [sym_with_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_debugger_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_throw_statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(968), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(276), + [anon_sym_default] = ACTIONS(380), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(278), + [anon_sym_RBRACE] = ACTIONS(382), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7113,7 +7684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(45), [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_case] = ACTIONS(276), + [anon_sym_case] = ACTIONS(380), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), @@ -7147,76 +7718,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [11] = { - [sym_export_statement] = STATE(8), - [sym_declaration] = STATE(8), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(8), - [sym_if_statement] = STATE(8), - [sym_switch_statement] = STATE(8), - [sym_for_statement] = STATE(8), - [sym_for_in_statement] = STATE(8), - [sym_while_statement] = STATE(8), - [sym_do_statement] = STATE(8), - [sym_try_statement] = STATE(8), - [sym_with_statement] = STATE(8), - [sym_break_statement] = STATE(8), - [sym_continue_statement] = STATE(8), - [sym_debugger_statement] = STATE(8), - [sym_return_statement] = STATE(8), - [sym_throw_statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym_labeled_statement] = STATE(8), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_program_repeat1] = STATE(8), - [aux_sym_export_statement_repeat1] = STATE(918), + [15] = { + [sym_export_statement] = STATE(13), + [sym_declaration] = STATE(13), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(13), + [sym_if_statement] = STATE(13), + [sym_switch_statement] = STATE(13), + [sym_for_statement] = STATE(13), + [sym_for_in_statement] = STATE(13), + [sym_while_statement] = STATE(13), + [sym_do_statement] = STATE(13), + [sym_try_statement] = STATE(13), + [sym_with_statement] = STATE(13), + [sym_break_statement] = STATE(13), + [sym_continue_statement] = STATE(13), + [sym_debugger_statement] = STATE(13), + [sym_return_statement] = STATE(13), + [sym_throw_statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_labeled_statement] = STATE(13), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(968), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(280), + [anon_sym_default] = ACTIONS(384), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(282), + [anon_sym_RBRACE] = ACTIONS(386), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7236,7 +7807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(45), [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_case] = ACTIONS(280), + [anon_sym_case] = ACTIONS(384), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), @@ -7270,75 +7841,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [12] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(918), + [16] = { + [sym_export_statement] = STATE(10), + [sym_declaration] = STATE(10), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_switch_statement] = STATE(10), + [sym_for_statement] = STATE(10), + [sym_for_in_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_statement] = STATE(10), + [sym_try_statement] = STATE(10), + [sym_with_statement] = STATE(10), + [sym_break_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_debugger_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_throw_statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym_labeled_statement] = STATE(10), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(968), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), + [anon_sym_default] = ACTIONS(388), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(390), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7358,6 +7930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(45), [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), + [anon_sym_case] = ACTIONS(388), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), @@ -7391,115 +7964,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [13] = { - [sym_export_statement] = STATE(16), - [sym_declaration] = STATE(16), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_for_in_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_try_statement] = STATE(16), - [sym_with_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_debugger_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_throw_statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_labeled_statement] = STATE(16), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(918), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(286), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), + [17] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(513), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_import] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_await] = ACTIONS(164), + [anon_sym_in] = ACTIONS(392), + [anon_sym_of] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(155), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(67), [anon_sym_TILDE] = ACTIONS(69), [anon_sym_typeof] = ACTIONS(71), [anon_sym_void] = ACTIONS(71), [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), [anon_sym_DQUOTE] = ACTIONS(75), [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(155), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), @@ -7508,119 +8081,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), + [sym__automatic_semicolon] = ACTIONS(155), }, - [14] = { - [sym_export_statement] = STATE(17), - [sym_declaration] = STATE(17), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_for_in_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_try_statement] = STATE(17), - [sym_with_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_debugger_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_throw_statement] = STATE(17), - [sym_empty_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(918), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(288), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), + [18] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(446), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(399), + [anon_sym_await] = ACTIONS(320), + [anon_sym_in] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_RBRACK] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_EQ_GT] = ACTIONS(332), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(336), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [19] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(513), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_import] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_await] = ACTIONS(164), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(405), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(67), [anon_sym_TILDE] = ACTIONS(69), [anon_sym_typeof] = ACTIONS(71), [anon_sym_void] = ACTIONS(71), [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), [anon_sym_DQUOTE] = ACTIONS(75), [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), + [anon_sym_BQUOTE] = ACTIONS(155), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), [sym_super] = ACTIONS(83), @@ -7629,79 +8325,446 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), + [sym__automatic_semicolon] = ACTIONS(155), }, - [15] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_for_in_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_with_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_debugger_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(918), + [20] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(513), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(155), + [anon_sym_import] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_await] = ACTIONS(164), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(51), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), + [sym__automatic_semicolon] = ACTIONS(155), + }, + [21] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(513), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_import] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_await] = ACTIONS(164), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_yield] = ACTIONS(51), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), + [sym__automatic_semicolon] = ACTIONS(155), + }, + [22] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(714), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(155), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_await] = ACTIONS(358), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_EQ] = ACTIONS(362), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + [sym__automatic_semicolon] = ACTIONS(155), + }, + [23] = { + [sym_export_statement] = STATE(10), + [sym_declaration] = STATE(10), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_switch_statement] = STATE(10), + [sym_for_statement] = STATE(10), + [sym_for_in_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_statement] = STATE(10), + [sym_try_statement] = STATE(10), + [sym_with_statement] = STATE(10), + [sym_break_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_debugger_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_throw_statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym_labeled_statement] = STATE(10), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(968), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(286), + [anon_sym_RBRACE] = ACTIONS(409), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7754,75 +8817,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [16] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(918), + [24] = { + [sym_export_statement] = STATE(10), + [sym_declaration] = STATE(10), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_switch_statement] = STATE(10), + [sym_for_statement] = STATE(10), + [sym_for_in_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_statement] = STATE(10), + [sym_try_statement] = STATE(10), + [sym_with_statement] = STATE(10), + [sym_break_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_debugger_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_throw_statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym_labeled_statement] = STATE(10), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(968), + [ts_builtin_sym_end] = ACTIONS(411), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(290), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7875,75 +8938,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [17] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(918), + [25] = { + [sym_export_statement] = STATE(10), + [sym_declaration] = STATE(10), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_switch_statement] = STATE(10), + [sym_for_statement] = STATE(10), + [sym_for_in_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_statement] = STATE(10), + [sym_try_statement] = STATE(10), + [sym_with_statement] = STATE(10), + [sym_break_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_debugger_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_throw_statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym_labeled_statement] = STATE(10), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(968), + [ts_builtin_sym_end] = ACTIONS(413), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(292), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7996,75 +9059,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [18] = { - [sym_export_statement] = STATE(19), - [sym_declaration] = STATE(19), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(19), - [sym_if_statement] = STATE(19), - [sym_switch_statement] = STATE(19), - [sym_for_statement] = STATE(19), - [sym_for_in_statement] = STATE(19), - [sym_while_statement] = STATE(19), - [sym_do_statement] = STATE(19), - [sym_try_statement] = STATE(19), - [sym_with_statement] = STATE(19), - [sym_break_statement] = STATE(19), - [sym_continue_statement] = STATE(19), - [sym_debugger_statement] = STATE(19), - [sym_return_statement] = STATE(19), - [sym_throw_statement] = STATE(19), - [sym_empty_statement] = STATE(19), - [sym_labeled_statement] = STATE(19), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(918), - [ts_builtin_sym_end] = ACTIONS(294), + [26] = { + [sym_export_statement] = STATE(34), + [sym_declaration] = STATE(34), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_for_in_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_try_statement] = STATE(34), + [sym_with_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_debugger_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_throw_statement] = STATE(34), + [sym_empty_statement] = STATE(34), + [sym_labeled_statement] = STATE(34), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_program_repeat1] = STATE(34), + [aux_sym_export_statement_repeat1] = STATE(968), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -8117,75 +9180,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [19] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(918), - [ts_builtin_sym_end] = ACTIONS(296), + [27] = { + [sym_export_statement] = STATE(32), + [sym_declaration] = STATE(32), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(32), + [sym_expression_statement] = STATE(32), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(32), + [sym_if_statement] = STATE(32), + [sym_switch_statement] = STATE(32), + [sym_for_statement] = STATE(32), + [sym_for_in_statement] = STATE(32), + [sym_while_statement] = STATE(32), + [sym_do_statement] = STATE(32), + [sym_try_statement] = STATE(32), + [sym_with_statement] = STATE(32), + [sym_break_statement] = STATE(32), + [sym_continue_statement] = STATE(32), + [sym_debugger_statement] = STATE(32), + [sym_return_statement] = STATE(32), + [sym_throw_statement] = STATE(32), + [sym_empty_statement] = STATE(32), + [sym_labeled_statement] = STATE(32), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_program_repeat1] = STATE(32), + [aux_sym_export_statement_repeat1] = STATE(968), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(417), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -8238,75 +9301,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [20] = { - [sym_export_statement] = STATE(24), - [sym_declaration] = STATE(24), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_for_in_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_try_statement] = STATE(24), - [sym_with_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_debugger_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_throw_statement] = STATE(24), - [sym_empty_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(918), + [28] = { + [sym_export_statement] = STATE(30), + [sym_declaration] = STATE(30), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_switch_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_for_in_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_try_statement] = STATE(30), + [sym_with_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_debugger_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_throw_statement] = STATE(30), + [sym_empty_statement] = STATE(30), + [sym_labeled_statement] = STATE(30), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(968), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(419), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -8359,196 +9422,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [21] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(918), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(300), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - }, - [22] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(918), - [ts_builtin_sym_end] = ACTIONS(294), + [29] = { + [sym_export_statement] = STATE(10), + [sym_declaration] = STATE(10), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_switch_statement] = STATE(10), + [sym_for_statement] = STATE(10), + [sym_for_in_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_statement] = STATE(10), + [sym_try_statement] = STATE(10), + [sym_with_statement] = STATE(10), + [sym_break_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_debugger_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_throw_statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym_labeled_statement] = STATE(10), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(968), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(421), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -8601,75 +9543,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [23] = { - [sym_export_statement] = STATE(21), - [sym_declaration] = STATE(21), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_for_in_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_try_statement] = STATE(21), - [sym_with_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_debugger_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_throw_statement] = STATE(21), - [sym_empty_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(918), + [30] = { + [sym_export_statement] = STATE(10), + [sym_declaration] = STATE(10), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_switch_statement] = STATE(10), + [sym_for_statement] = STATE(10), + [sym_for_in_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_statement] = STATE(10), + [sym_try_statement] = STATE(10), + [sym_with_statement] = STATE(10), + [sym_break_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_debugger_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_throw_statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym_labeled_statement] = STATE(10), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(968), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(302), + [anon_sym_RBRACE] = ACTIONS(423), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -8722,75 +9664,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [24] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(918), + [31] = { + [sym_export_statement] = STATE(23), + [sym_declaration] = STATE(23), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_for_in_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_try_statement] = STATE(23), + [sym_with_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_debugger_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_throw_statement] = STATE(23), + [sym_empty_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(968), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(304), + [anon_sym_RBRACE] = ACTIONS(425), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -8843,73 +9785,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [25] = { - [sym_export_statement] = STATE(233), - [sym_declaration] = STATE(233), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(233), - [sym_expression_statement] = STATE(233), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(233), - [sym_if_statement] = STATE(233), - [sym_switch_statement] = STATE(233), - [sym_for_statement] = STATE(233), - [sym_for_in_statement] = STATE(233), - [sym_while_statement] = STATE(233), - [sym_do_statement] = STATE(233), - [sym_try_statement] = STATE(233), - [sym_with_statement] = STATE(233), - [sym_break_statement] = STATE(233), - [sym_continue_statement] = STATE(233), - [sym_debugger_statement] = STATE(233), - [sym_return_statement] = STATE(233), - [sym_throw_statement] = STATE(233), - [sym_empty_statement] = STATE(233), - [sym_labeled_statement] = STATE(233), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(918), + [32] = { + [sym_export_statement] = STATE(10), + [sym_declaration] = STATE(10), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_switch_statement] = STATE(10), + [sym_for_statement] = STATE(10), + [sym_for_in_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_statement] = STATE(10), + [sym_try_statement] = STATE(10), + [sym_with_statement] = STATE(10), + [sym_break_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_debugger_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_throw_statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym_labeled_statement] = STATE(10), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(968), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(427), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -8962,70 +9906,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [26] = { - [sym_export_statement] = STATE(317), - [sym_declaration] = STATE(318), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(319), - [sym_expression_statement] = STATE(320), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(321), - [sym_if_statement] = STATE(322), - [sym_switch_statement] = STATE(323), - [sym_for_statement] = STATE(324), - [sym_for_in_statement] = STATE(325), - [sym_while_statement] = STATE(326), - [sym_do_statement] = STATE(327), - [sym_try_statement] = STATE(328), - [sym_with_statement] = STATE(329), - [sym_break_statement] = STATE(330), - [sym_continue_statement] = STATE(331), - [sym_debugger_statement] = STATE(332), - [sym_return_statement] = STATE(333), - [sym_throw_statement] = STATE(334), - [sym_empty_statement] = STATE(335), - [sym_labeled_statement] = STATE(336), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(918), + [33] = { + [sym_export_statement] = STATE(25), + [sym_declaration] = STATE(25), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_switch_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym_for_in_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_try_statement] = STATE(25), + [sym_with_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_debugger_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_throw_statement] = STATE(25), + [sym_empty_statement] = STATE(25), + [sym_labeled_statement] = STATE(25), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(968), + [ts_builtin_sym_end] = ACTIONS(411), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), @@ -9081,73 +10027,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [27] = { - [sym_export_statement] = STATE(279), - [sym_declaration] = STATE(279), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_for_in_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_with_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_debugger_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_empty_statement] = STATE(279), - [sym_labeled_statement] = STATE(279), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(918), + [34] = { + [sym_export_statement] = STATE(10), + [sym_declaration] = STATE(10), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_switch_statement] = STATE(10), + [sym_for_statement] = STATE(10), + [sym_for_in_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_statement] = STATE(10), + [sym_try_statement] = STATE(10), + [sym_with_statement] = STATE(10), + [sym_break_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_debugger_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_throw_statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym_labeled_statement] = STATE(10), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(968), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(429), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -9200,73 +10148,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [28] = { - [sym_export_statement] = STATE(313), - [sym_declaration] = STATE(313), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_for_in_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_try_statement] = STATE(313), - [sym_with_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_debugger_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_throw_statement] = STATE(313), - [sym_empty_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(918), + [35] = { + [sym_export_statement] = STATE(29), + [sym_declaration] = STATE(29), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_for_in_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_try_statement] = STATE(29), + [sym_with_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_debugger_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_throw_statement] = STATE(29), + [sym_empty_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_export_statement_repeat1] = STATE(968), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(419), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -9319,189 +10269,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [29] = { - [sym_export_statement] = STATE(263), - [sym_declaration] = STATE(262), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(261), - [sym_expression_statement] = STATE(260), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(259), - [sym_if_statement] = STATE(258), - [sym_switch_statement] = STATE(257), - [sym_for_statement] = STATE(295), - [sym_for_in_statement] = STATE(255), - [sym_while_statement] = STATE(254), - [sym_do_statement] = STATE(248), - [sym_try_statement] = STATE(252), - [sym_with_statement] = STATE(251), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(249), - [sym_debugger_statement] = STATE(296), - [sym_return_statement] = STATE(307), - [sym_throw_statement] = STATE(270), - [sym_empty_statement] = STATE(271), - [sym_labeled_statement] = STATE(272), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(898), - [sym_identifier] = ACTIONS(306), - [anon_sym_export] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(312), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(314), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(316), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(318), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(320), - [anon_sym_async] = ACTIONS(322), - [anon_sym_function] = ACTIONS(324), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), + [36] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(446), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_await] = ACTIONS(320), + [anon_sym_in] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_RBRACK] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_EQ_GT] = ACTIONS(332), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(336), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(326), - [anon_sym_get] = ACTIONS(326), - [anon_sym_set] = ACTIONS(326), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, - [30] = { - [sym_export_statement] = STATE(294), - [sym_declaration] = STATE(294), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(294), - [sym_expression_statement] = STATE(294), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(294), - [sym_if_statement] = STATE(294), - [sym_switch_statement] = STATE(294), - [sym_for_statement] = STATE(294), - [sym_for_in_statement] = STATE(294), - [sym_while_statement] = STATE(294), - [sym_do_statement] = STATE(294), - [sym_try_statement] = STATE(294), - [sym_with_statement] = STATE(294), - [sym_break_statement] = STATE(294), - [sym_continue_statement] = STATE(294), - [sym_debugger_statement] = STATE(294), - [sym_return_statement] = STATE(294), - [sym_throw_statement] = STATE(294), - [sym_empty_statement] = STATE(294), - [sym_labeled_statement] = STATE(294), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(918), + [37] = { + [sym_export_statement] = STATE(369), + [sym_declaration] = STATE(372), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(377), + [sym_expression_statement] = STATE(378), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(362), + [sym_if_statement] = STATE(307), + [sym_switch_statement] = STATE(311), + [sym_for_statement] = STATE(351), + [sym_for_in_statement] = STATE(375), + [sym_while_statement] = STATE(371), + [sym_do_statement] = STATE(370), + [sym_try_statement] = STATE(361), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(354), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(343), + [sym_return_statement] = STATE(319), + [sym_throw_statement] = STATE(314), + [sym_empty_statement] = STATE(336), + [sym_labeled_statement] = STATE(289), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(968), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), @@ -9557,86 +10508,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [31] = { - [sym_export_statement] = STATE(279), - [sym_declaration] = STATE(279), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(279), - [sym_expression_statement] = STATE(279), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(279), - [sym_if_statement] = STATE(279), - [sym_switch_statement] = STATE(279), - [sym_for_statement] = STATE(279), - [sym_for_in_statement] = STATE(279), - [sym_while_statement] = STATE(279), - [sym_do_statement] = STATE(279), - [sym_try_statement] = STATE(279), - [sym_with_statement] = STATE(279), - [sym_break_statement] = STATE(279), - [sym_continue_statement] = STATE(279), - [sym_debugger_statement] = STATE(279), - [sym_return_statement] = STATE(279), - [sym_throw_statement] = STATE(279), - [sym_empty_statement] = STATE(279), - [sym_labeled_statement] = STATE(279), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(898), - [sym_identifier] = ACTIONS(306), - [anon_sym_export] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(310), + [38] = { + [sym_export_statement] = STATE(296), + [sym_declaration] = STATE(296), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(296), + [sym_expression_statement] = STATE(296), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(296), + [sym_if_statement] = STATE(296), + [sym_switch_statement] = STATE(296), + [sym_for_statement] = STATE(296), + [sym_for_in_statement] = STATE(296), + [sym_while_statement] = STATE(296), + [sym_do_statement] = STATE(296), + [sym_try_statement] = STATE(296), + [sym_with_statement] = STATE(296), + [sym_break_statement] = STATE(296), + [sym_continue_statement] = STATE(296), + [sym_debugger_statement] = STATE(296), + [sym_return_statement] = STATE(296), + [sym_throw_statement] = STATE(296), + [sym_empty_statement] = STATE(296), + [sym_labeled_statement] = STATE(296), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(433), + [anon_sym_export] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(437), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(312), + [anon_sym_if] = ACTIONS(439), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(314), + [anon_sym_for] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(316), + [anon_sym_await] = ACTIONS(443), + [anon_sym_while] = ACTIONS(445), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(318), + [anon_sym_with] = ACTIONS(447), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -9647,9 +10598,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(320), - [anon_sym_async] = ACTIONS(322), - [anon_sym_function] = ACTIONS(324), + [anon_sym_class] = ACTIONS(449), + [anon_sym_async] = ACTIONS(451), + [anon_sym_function] = ACTIONS(453), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -9672,90 +10623,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(326), - [anon_sym_get] = ACTIONS(326), - [anon_sym_set] = ACTIONS(326), + [anon_sym_static] = ACTIONS(455), + [anon_sym_get] = ACTIONS(455), + [anon_sym_set] = ACTIONS(455), }, - [32] = { - [sym_export_statement] = STATE(280), - [sym_declaration] = STATE(280), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(280), - [sym_expression_statement] = STATE(280), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(280), - [sym_if_statement] = STATE(280), - [sym_switch_statement] = STATE(280), - [sym_for_statement] = STATE(280), - [sym_for_in_statement] = STATE(280), - [sym_while_statement] = STATE(280), - [sym_do_statement] = STATE(280), - [sym_try_statement] = STATE(280), - [sym_with_statement] = STATE(280), - [sym_break_statement] = STATE(280), - [sym_continue_statement] = STATE(280), - [sym_debugger_statement] = STATE(280), - [sym_return_statement] = STATE(280), - [sym_throw_statement] = STATE(280), - [sym_empty_statement] = STATE(280), - [sym_labeled_statement] = STATE(280), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(898), - [sym_identifier] = ACTIONS(306), - [anon_sym_export] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(310), + [39] = { + [sym_export_statement] = STATE(369), + [sym_declaration] = STATE(372), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(377), + [sym_expression_statement] = STATE(378), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(362), + [sym_if_statement] = STATE(307), + [sym_switch_statement] = STATE(311), + [sym_for_statement] = STATE(351), + [sym_for_in_statement] = STATE(375), + [sym_while_statement] = STATE(371), + [sym_do_statement] = STATE(370), + [sym_try_statement] = STATE(361), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(354), + [sym_continue_statement] = STATE(350), + [sym_debugger_statement] = STATE(343), + [sym_return_statement] = STATE(319), + [sym_throw_statement] = STATE(314), + [sym_empty_statement] = STATE(336), + [sym_labeled_statement] = STATE(289), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(433), + [anon_sym_export] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(437), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(312), + [anon_sym_if] = ACTIONS(439), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(314), + [anon_sym_for] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(316), + [anon_sym_await] = ACTIONS(443), + [anon_sym_while] = ACTIONS(445), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(318), + [anon_sym_with] = ACTIONS(447), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -9766,9 +10717,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(320), - [anon_sym_async] = ACTIONS(322), - [anon_sym_function] = ACTIONS(324), + [anon_sym_class] = ACTIONS(449), + [anon_sym_async] = ACTIONS(451), + [anon_sym_function] = ACTIONS(453), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -9791,90 +10742,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(326), - [anon_sym_get] = ACTIONS(326), - [anon_sym_set] = ACTIONS(326), + [anon_sym_static] = ACTIONS(455), + [anon_sym_get] = ACTIONS(455), + [anon_sym_set] = ACTIONS(455), }, - [33] = { - [sym_export_statement] = STATE(1034), - [sym_declaration] = STATE(1034), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(1034), - [sym_expression_statement] = STATE(1034), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(1034), - [sym_if_statement] = STATE(1034), - [sym_switch_statement] = STATE(1034), - [sym_for_statement] = STATE(1034), - [sym_for_in_statement] = STATE(1034), - [sym_while_statement] = STATE(1034), - [sym_do_statement] = STATE(1034), - [sym_try_statement] = STATE(1034), - [sym_with_statement] = STATE(1034), - [sym_break_statement] = STATE(1034), - [sym_continue_statement] = STATE(1034), - [sym_debugger_statement] = STATE(1034), - [sym_return_statement] = STATE(1034), - [sym_throw_statement] = STATE(1034), - [sym_empty_statement] = STATE(1034), - [sym_labeled_statement] = STATE(1034), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(898), - [sym_identifier] = ACTIONS(306), - [anon_sym_export] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(310), + [40] = { + [sym_export_statement] = STATE(321), + [sym_declaration] = STATE(322), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(323), + [sym_expression_statement] = STATE(324), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(325), + [sym_if_statement] = STATE(326), + [sym_switch_statement] = STATE(327), + [sym_for_statement] = STATE(328), + [sym_for_in_statement] = STATE(329), + [sym_while_statement] = STATE(330), + [sym_do_statement] = STATE(331), + [sym_try_statement] = STATE(332), + [sym_with_statement] = STATE(333), + [sym_break_statement] = STATE(334), + [sym_continue_statement] = STATE(335), + [sym_debugger_statement] = STATE(288), + [sym_return_statement] = STATE(337), + [sym_throw_statement] = STATE(338), + [sym_empty_statement] = STATE(339), + [sym_labeled_statement] = STATE(340), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(433), + [anon_sym_export] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(437), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(312), + [anon_sym_if] = ACTIONS(439), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(314), + [anon_sym_for] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(316), + [anon_sym_await] = ACTIONS(443), + [anon_sym_while] = ACTIONS(445), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(318), + [anon_sym_with] = ACTIONS(447), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -9885,9 +10836,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(320), - [anon_sym_async] = ACTIONS(322), - [anon_sym_function] = ACTIONS(324), + [anon_sym_class] = ACTIONS(449), + [anon_sym_async] = ACTIONS(451), + [anon_sym_function] = ACTIONS(453), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -9910,90 +10861,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(326), - [anon_sym_get] = ACTIONS(326), - [anon_sym_set] = ACTIONS(326), + [anon_sym_static] = ACTIONS(455), + [anon_sym_get] = ACTIONS(455), + [anon_sym_set] = ACTIONS(455), }, - [34] = { - [sym_export_statement] = STATE(308), - [sym_declaration] = STATE(308), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(308), - [sym_expression_statement] = STATE(308), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(308), - [sym_if_statement] = STATE(308), - [sym_switch_statement] = STATE(308), - [sym_for_statement] = STATE(308), - [sym_for_in_statement] = STATE(308), - [sym_while_statement] = STATE(308), - [sym_do_statement] = STATE(308), - [sym_try_statement] = STATE(308), - [sym_with_statement] = STATE(308), - [sym_break_statement] = STATE(308), - [sym_continue_statement] = STATE(308), - [sym_debugger_statement] = STATE(308), - [sym_return_statement] = STATE(308), - [sym_throw_statement] = STATE(308), - [sym_empty_statement] = STATE(308), - [sym_labeled_statement] = STATE(308), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(898), - [sym_identifier] = ACTIONS(306), - [anon_sym_export] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(310), + [41] = { + [sym_export_statement] = STATE(357), + [sym_declaration] = STATE(357), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(357), + [sym_expression_statement] = STATE(357), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(357), + [sym_if_statement] = STATE(357), + [sym_switch_statement] = STATE(357), + [sym_for_statement] = STATE(357), + [sym_for_in_statement] = STATE(357), + [sym_while_statement] = STATE(357), + [sym_do_statement] = STATE(357), + [sym_try_statement] = STATE(357), + [sym_with_statement] = STATE(357), + [sym_break_statement] = STATE(357), + [sym_continue_statement] = STATE(357), + [sym_debugger_statement] = STATE(357), + [sym_return_statement] = STATE(357), + [sym_throw_statement] = STATE(357), + [sym_empty_statement] = STATE(357), + [sym_labeled_statement] = STATE(357), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(433), + [anon_sym_export] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(437), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(312), + [anon_sym_if] = ACTIONS(439), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(314), + [anon_sym_for] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(316), + [anon_sym_await] = ACTIONS(443), + [anon_sym_while] = ACTIONS(445), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(318), + [anon_sym_with] = ACTIONS(447), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -10004,9 +10955,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(320), - [anon_sym_async] = ACTIONS(322), - [anon_sym_function] = ACTIONS(324), + [anon_sym_class] = ACTIONS(449), + [anon_sym_async] = ACTIONS(451), + [anon_sym_function] = ACTIONS(453), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10029,90 +10980,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(326), - [anon_sym_get] = ACTIONS(326), - [anon_sym_set] = ACTIONS(326), + [anon_sym_static] = ACTIONS(455), + [anon_sym_get] = ACTIONS(455), + [anon_sym_set] = ACTIONS(455), }, - [35] = { - [sym_export_statement] = STATE(314), - [sym_declaration] = STATE(314), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(314), - [sym_expression_statement] = STATE(314), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(314), - [sym_if_statement] = STATE(314), - [sym_switch_statement] = STATE(314), - [sym_for_statement] = STATE(314), - [sym_for_in_statement] = STATE(314), - [sym_while_statement] = STATE(314), - [sym_do_statement] = STATE(314), - [sym_try_statement] = STATE(314), - [sym_with_statement] = STATE(314), - [sym_break_statement] = STATE(314), - [sym_continue_statement] = STATE(314), - [sym_debugger_statement] = STATE(314), - [sym_return_statement] = STATE(314), - [sym_throw_statement] = STATE(314), - [sym_empty_statement] = STATE(314), - [sym_labeled_statement] = STATE(314), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(898), - [sym_identifier] = ACTIONS(306), - [anon_sym_export] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(310), + [42] = { + [sym_export_statement] = STATE(321), + [sym_declaration] = STATE(322), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(323), + [sym_expression_statement] = STATE(324), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(325), + [sym_if_statement] = STATE(326), + [sym_switch_statement] = STATE(327), + [sym_for_statement] = STATE(328), + [sym_for_in_statement] = STATE(329), + [sym_while_statement] = STATE(330), + [sym_do_statement] = STATE(331), + [sym_try_statement] = STATE(332), + [sym_with_statement] = STATE(333), + [sym_break_statement] = STATE(334), + [sym_continue_statement] = STATE(335), + [sym_debugger_statement] = STATE(288), + [sym_return_statement] = STATE(337), + [sym_throw_statement] = STATE(338), + [sym_empty_statement] = STATE(339), + [sym_labeled_statement] = STATE(340), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(968), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(13), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(312), + [anon_sym_if] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(314), + [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(316), + [anon_sym_while] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(318), + [anon_sym_with] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -10123,9 +11074,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(320), - [anon_sym_async] = ACTIONS(322), - [anon_sym_function] = ACTIONS(324), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10148,90 +11099,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(326), - [anon_sym_get] = ACTIONS(326), - [anon_sym_set] = ACTIONS(326), + [anon_sym_static] = ACTIONS(89), + [anon_sym_get] = ACTIONS(89), + [anon_sym_set] = ACTIONS(89), }, - [36] = { - [sym_export_statement] = STATE(317), - [sym_declaration] = STATE(318), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(319), - [sym_expression_statement] = STATE(320), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(321), - [sym_if_statement] = STATE(322), - [sym_switch_statement] = STATE(323), - [sym_for_statement] = STATE(324), - [sym_for_in_statement] = STATE(325), - [sym_while_statement] = STATE(326), - [sym_do_statement] = STATE(327), - [sym_try_statement] = STATE(328), - [sym_with_statement] = STATE(329), - [sym_break_statement] = STATE(330), - [sym_continue_statement] = STATE(331), - [sym_debugger_statement] = STATE(332), - [sym_return_statement] = STATE(333), - [sym_throw_statement] = STATE(334), - [sym_empty_statement] = STATE(335), - [sym_labeled_statement] = STATE(336), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(898), - [sym_identifier] = ACTIONS(306), - [anon_sym_export] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(310), + [43] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(714), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_await] = ACTIONS(358), + [anon_sym_in] = ACTIONS(392), + [anon_sym_of] = ACTIONS(395), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_EQ] = ACTIONS(362), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_EQ_GT] = ACTIONS(457), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + }, + [44] = { + [sym_export_statement] = STATE(1411), + [sym_declaration] = STATE(1411), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(1411), + [sym_expression_statement] = STATE(1411), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(1411), + [sym_if_statement] = STATE(1411), + [sym_switch_statement] = STATE(1411), + [sym_for_statement] = STATE(1411), + [sym_for_in_statement] = STATE(1411), + [sym_while_statement] = STATE(1411), + [sym_do_statement] = STATE(1411), + [sym_try_statement] = STATE(1411), + [sym_with_statement] = STATE(1411), + [sym_break_statement] = STATE(1411), + [sym_continue_statement] = STATE(1411), + [sym_debugger_statement] = STATE(1411), + [sym_return_statement] = STATE(1411), + [sym_throw_statement] = STATE(1411), + [sym_empty_statement] = STATE(1411), + [sym_labeled_statement] = STATE(1411), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(433), + [anon_sym_export] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(437), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(312), + [anon_sym_if] = ACTIONS(439), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(314), + [anon_sym_for] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(316), + [anon_sym_await] = ACTIONS(443), + [anon_sym_while] = ACTIONS(445), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(318), + [anon_sym_with] = ACTIONS(447), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -10242,9 +11312,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(320), - [anon_sym_async] = ACTIONS(322), - [anon_sym_function] = ACTIONS(324), + [anon_sym_class] = ACTIONS(449), + [anon_sym_async] = ACTIONS(451), + [anon_sym_function] = ACTIONS(453), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10267,90 +11337,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(326), - [anon_sym_get] = ACTIONS(326), - [anon_sym_set] = ACTIONS(326), + [anon_sym_static] = ACTIONS(455), + [anon_sym_get] = ACTIONS(455), + [anon_sym_set] = ACTIONS(455), }, - [37] = { - [sym_export_statement] = STATE(294), - [sym_declaration] = STATE(294), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(294), - [sym_expression_statement] = STATE(294), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(294), - [sym_if_statement] = STATE(294), - [sym_switch_statement] = STATE(294), - [sym_for_statement] = STATE(294), - [sym_for_in_statement] = STATE(294), - [sym_while_statement] = STATE(294), - [sym_do_statement] = STATE(294), - [sym_try_statement] = STATE(294), - [sym_with_statement] = STATE(294), - [sym_break_statement] = STATE(294), - [sym_continue_statement] = STATE(294), - [sym_debugger_statement] = STATE(294), - [sym_return_statement] = STATE(294), - [sym_throw_statement] = STATE(294), - [sym_empty_statement] = STATE(294), - [sym_labeled_statement] = STATE(294), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(898), - [sym_identifier] = ACTIONS(306), - [anon_sym_export] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(310), + [45] = { + [sym_export_statement] = STATE(357), + [sym_declaration] = STATE(357), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(357), + [sym_expression_statement] = STATE(357), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(357), + [sym_if_statement] = STATE(357), + [sym_switch_statement] = STATE(357), + [sym_for_statement] = STATE(357), + [sym_for_in_statement] = STATE(357), + [sym_while_statement] = STATE(357), + [sym_do_statement] = STATE(357), + [sym_try_statement] = STATE(357), + [sym_with_statement] = STATE(357), + [sym_break_statement] = STATE(357), + [sym_continue_statement] = STATE(357), + [sym_debugger_statement] = STATE(357), + [sym_return_statement] = STATE(357), + [sym_throw_statement] = STATE(357), + [sym_empty_statement] = STATE(357), + [sym_labeled_statement] = STATE(357), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(968), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(13), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(312), + [anon_sym_if] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(314), + [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(316), + [anon_sym_while] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(318), + [anon_sym_with] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -10361,9 +11431,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(320), - [anon_sym_async] = ACTIONS(322), - [anon_sym_function] = ACTIONS(324), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10386,90 +11456,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(326), - [anon_sym_get] = ACTIONS(326), - [anon_sym_set] = ACTIONS(326), + [anon_sym_static] = ACTIONS(89), + [anon_sym_get] = ACTIONS(89), + [anon_sym_set] = ACTIONS(89), }, - [38] = { - [sym_export_statement] = STATE(308), - [sym_declaration] = STATE(308), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(308), - [sym_expression_statement] = STATE(308), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(308), - [sym_if_statement] = STATE(308), - [sym_switch_statement] = STATE(308), - [sym_for_statement] = STATE(308), - [sym_for_in_statement] = STATE(308), - [sym_while_statement] = STATE(308), - [sym_do_statement] = STATE(308), - [sym_try_statement] = STATE(308), - [sym_with_statement] = STATE(308), - [sym_break_statement] = STATE(308), - [sym_continue_statement] = STATE(308), - [sym_debugger_statement] = STATE(308), - [sym_return_statement] = STATE(308), - [sym_throw_statement] = STATE(308), - [sym_empty_statement] = STATE(308), - [sym_labeled_statement] = STATE(308), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(918), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), + [46] = { + [sym_export_statement] = STATE(1116), + [sym_declaration] = STATE(1116), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_switch_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_for_in_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_do_statement] = STATE(1116), + [sym_try_statement] = STATE(1116), + [sym_with_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_debugger_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_throw_statement] = STATE(1116), + [sym_empty_statement] = STATE(1116), + [sym_labeled_statement] = STATE(1116), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(433), + [anon_sym_export] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(437), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), + [anon_sym_if] = ACTIONS(439), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), + [anon_sym_for] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), + [anon_sym_await] = ACTIONS(443), + [anon_sym_while] = ACTIONS(445), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), + [anon_sym_with] = ACTIONS(447), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -10480,9 +11550,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), + [anon_sym_class] = ACTIONS(449), + [anon_sym_async] = ACTIONS(451), + [anon_sym_function] = ACTIONS(453), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10505,74 +11575,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), + [anon_sym_static] = ACTIONS(455), + [anon_sym_get] = ACTIONS(455), + [anon_sym_set] = ACTIONS(455), }, - [39] = { - [sym_export_statement] = STATE(314), - [sym_declaration] = STATE(314), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(314), - [sym_expression_statement] = STATE(314), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(314), - [sym_if_statement] = STATE(314), - [sym_switch_statement] = STATE(314), - [sym_for_statement] = STATE(314), - [sym_for_in_statement] = STATE(314), - [sym_while_statement] = STATE(314), - [sym_do_statement] = STATE(314), - [sym_try_statement] = STATE(314), - [sym_with_statement] = STATE(314), - [sym_break_statement] = STATE(314), - [sym_continue_statement] = STATE(314), - [sym_debugger_statement] = STATE(314), - [sym_return_statement] = STATE(314), - [sym_throw_statement] = STATE(314), - [sym_empty_statement] = STATE(314), - [sym_labeled_statement] = STATE(314), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(918), + [47] = { + [sym_export_statement] = STATE(364), + [sym_declaration] = STATE(364), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(364), + [sym_expression_statement] = STATE(364), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(364), + [sym_if_statement] = STATE(364), + [sym_switch_statement] = STATE(364), + [sym_for_statement] = STATE(364), + [sym_for_in_statement] = STATE(364), + [sym_while_statement] = STATE(364), + [sym_do_statement] = STATE(364), + [sym_try_statement] = STATE(364), + [sym_with_statement] = STATE(364), + [sym_break_statement] = STATE(364), + [sym_continue_statement] = STATE(364), + [sym_debugger_statement] = STATE(364), + [sym_return_statement] = STATE(364), + [sym_throw_statement] = STATE(364), + [sym_empty_statement] = STATE(364), + [sym_labeled_statement] = STATE(364), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(968), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), @@ -10628,86 +11698,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(89), [anon_sym_set] = ACTIONS(89), }, - [40] = { - [sym_export_statement] = STATE(263), - [sym_declaration] = STATE(262), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(261), - [sym_expression_statement] = STATE(260), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(259), - [sym_if_statement] = STATE(258), - [sym_switch_statement] = STATE(257), - [sym_for_statement] = STATE(295), - [sym_for_in_statement] = STATE(255), - [sym_while_statement] = STATE(254), - [sym_do_statement] = STATE(248), - [sym_try_statement] = STATE(252), - [sym_with_statement] = STATE(251), - [sym_break_statement] = STATE(250), - [sym_continue_statement] = STATE(249), - [sym_debugger_statement] = STATE(296), - [sym_return_statement] = STATE(307), - [sym_throw_statement] = STATE(270), - [sym_empty_statement] = STATE(271), - [sym_labeled_statement] = STATE(272), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(918), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), + [48] = { + [sym_export_statement] = STATE(353), + [sym_declaration] = STATE(353), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(353), + [sym_expression_statement] = STATE(353), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(353), + [sym_if_statement] = STATE(353), + [sym_switch_statement] = STATE(353), + [sym_for_statement] = STATE(353), + [sym_for_in_statement] = STATE(353), + [sym_while_statement] = STATE(353), + [sym_do_statement] = STATE(353), + [sym_try_statement] = STATE(353), + [sym_with_statement] = STATE(353), + [sym_break_statement] = STATE(353), + [sym_continue_statement] = STATE(353), + [sym_debugger_statement] = STATE(353), + [sym_return_statement] = STATE(353), + [sym_throw_statement] = STATE(353), + [sym_empty_statement] = STATE(353), + [sym_labeled_statement] = STATE(353), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(433), + [anon_sym_export] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(437), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), + [anon_sym_if] = ACTIONS(439), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), + [anon_sym_for] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), + [anon_sym_await] = ACTIONS(443), + [anon_sym_while] = ACTIONS(445), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), + [anon_sym_with] = ACTIONS(447), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -10718,9 +11788,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), + [anon_sym_class] = ACTIONS(449), + [anon_sym_async] = ACTIONS(451), + [anon_sym_function] = ACTIONS(453), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10743,90 +11813,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), + [anon_sym_static] = ACTIONS(455), + [anon_sym_get] = ACTIONS(455), + [anon_sym_set] = ACTIONS(455), }, - [41] = { - [sym_export_statement] = STATE(280), - [sym_declaration] = STATE(280), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(280), - [sym_expression_statement] = STATE(280), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(280), - [sym_if_statement] = STATE(280), - [sym_switch_statement] = STATE(280), - [sym_for_statement] = STATE(280), - [sym_for_in_statement] = STATE(280), - [sym_while_statement] = STATE(280), - [sym_do_statement] = STATE(280), - [sym_try_statement] = STATE(280), - [sym_with_statement] = STATE(280), - [sym_break_statement] = STATE(280), - [sym_continue_statement] = STATE(280), - [sym_debugger_statement] = STATE(280), - [sym_return_statement] = STATE(280), - [sym_throw_statement] = STATE(280), - [sym_empty_statement] = STATE(280), - [sym_labeled_statement] = STATE(280), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(918), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), + [49] = { + [sym_export_statement] = STATE(356), + [sym_declaration] = STATE(356), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(356), + [sym_expression_statement] = STATE(356), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(356), + [sym_if_statement] = STATE(356), + [sym_switch_statement] = STATE(356), + [sym_for_statement] = STATE(356), + [sym_for_in_statement] = STATE(356), + [sym_while_statement] = STATE(356), + [sym_do_statement] = STATE(356), + [sym_try_statement] = STATE(356), + [sym_with_statement] = STATE(356), + [sym_break_statement] = STATE(356), + [sym_continue_statement] = STATE(356), + [sym_debugger_statement] = STATE(356), + [sym_return_statement] = STATE(356), + [sym_throw_statement] = STATE(356), + [sym_empty_statement] = STATE(356), + [sym_labeled_statement] = STATE(356), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(433), + [anon_sym_export] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(437), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), + [anon_sym_if] = ACTIONS(439), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), + [anon_sym_for] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), + [anon_sym_await] = ACTIONS(443), + [anon_sym_while] = ACTIONS(445), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), + [anon_sym_with] = ACTIONS(447), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -10837,9 +11907,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), + [anon_sym_class] = ACTIONS(449), + [anon_sym_async] = ACTIONS(451), + [anon_sym_function] = ACTIONS(453), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10862,90 +11932,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), + [anon_sym_static] = ACTIONS(455), + [anon_sym_get] = ACTIONS(455), + [anon_sym_set] = ACTIONS(455), }, - [42] = { - [sym_export_statement] = STATE(1378), - [sym_declaration] = STATE(1378), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(1378), - [sym_expression_statement] = STATE(1378), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(1378), - [sym_if_statement] = STATE(1378), - [sym_switch_statement] = STATE(1378), - [sym_for_statement] = STATE(1378), - [sym_for_in_statement] = STATE(1378), - [sym_while_statement] = STATE(1378), - [sym_do_statement] = STATE(1378), - [sym_try_statement] = STATE(1378), - [sym_with_statement] = STATE(1378), - [sym_break_statement] = STATE(1378), - [sym_continue_statement] = STATE(1378), - [sym_debugger_statement] = STATE(1378), - [sym_return_statement] = STATE(1378), - [sym_throw_statement] = STATE(1378), - [sym_empty_statement] = STATE(1378), - [sym_labeled_statement] = STATE(1378), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(898), - [sym_identifier] = ACTIONS(306), - [anon_sym_export] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(310), + [50] = { + [sym_export_statement] = STATE(302), + [sym_declaration] = STATE(302), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(302), + [sym_expression_statement] = STATE(302), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(302), + [sym_if_statement] = STATE(302), + [sym_switch_statement] = STATE(302), + [sym_for_statement] = STATE(302), + [sym_for_in_statement] = STATE(302), + [sym_while_statement] = STATE(302), + [sym_do_statement] = STATE(302), + [sym_try_statement] = STATE(302), + [sym_with_statement] = STATE(302), + [sym_break_statement] = STATE(302), + [sym_continue_statement] = STATE(302), + [sym_debugger_statement] = STATE(302), + [sym_return_statement] = STATE(302), + [sym_throw_statement] = STATE(302), + [sym_empty_statement] = STATE(302), + [sym_labeled_statement] = STATE(302), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(433), + [anon_sym_export] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(437), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(312), + [anon_sym_if] = ACTIONS(439), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(314), + [anon_sym_for] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(316), + [anon_sym_await] = ACTIONS(443), + [anon_sym_while] = ACTIONS(445), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(318), + [anon_sym_with] = ACTIONS(447), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -10956,9 +12026,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(320), - [anon_sym_async] = ACTIONS(322), - [anon_sym_function] = ACTIONS(324), + [anon_sym_class] = ACTIONS(449), + [anon_sym_async] = ACTIONS(451), + [anon_sym_function] = ACTIONS(453), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10981,90 +12051,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(326), - [anon_sym_get] = ACTIONS(326), - [anon_sym_set] = ACTIONS(326), + [anon_sym_static] = ACTIONS(455), + [anon_sym_get] = ACTIONS(455), + [anon_sym_set] = ACTIONS(455), }, - [43] = { - [sym_export_statement] = STATE(313), - [sym_declaration] = STATE(313), - [sym_import] = STATE(575), - [sym_import_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_statement_block] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_for_in_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_try_statement] = STATE(313), - [sym_with_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_debugger_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_throw_statement] = STATE(313), - [sym_empty_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(898), - [sym_identifier] = ACTIONS(306), - [anon_sym_export] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(310), + [51] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(714), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_await] = ACTIONS(358), + [anon_sym_in] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(155), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_EQ] = ACTIONS(362), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_EQ_GT] = ACTIONS(457), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + }, + [52] = { + [sym_export_statement] = STATE(356), + [sym_declaration] = STATE(356), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(356), + [sym_expression_statement] = STATE(356), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(356), + [sym_if_statement] = STATE(356), + [sym_switch_statement] = STATE(356), + [sym_for_statement] = STATE(356), + [sym_for_in_statement] = STATE(356), + [sym_while_statement] = STATE(356), + [sym_do_statement] = STATE(356), + [sym_try_statement] = STATE(356), + [sym_with_statement] = STATE(356), + [sym_break_statement] = STATE(356), + [sym_continue_statement] = STATE(356), + [sym_debugger_statement] = STATE(356), + [sym_return_statement] = STATE(356), + [sym_throw_statement] = STATE(356), + [sym_empty_statement] = STATE(356), + [sym_labeled_statement] = STATE(356), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(968), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(13), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(312), + [anon_sym_if] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(314), + [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(316), + [anon_sym_while] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(318), + [anon_sym_with] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -11075,9 +12264,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(320), - [anon_sym_async] = ACTIONS(322), - [anon_sym_function] = ACTIONS(324), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -11100,198 +12289,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(326), - [anon_sym_get] = ACTIONS(326), - [anon_sym_set] = ACTIONS(326), - }, - [44] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(403), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_STAR] = ACTIONS(332), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_RBRACE] = ACTIONS(336), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(336), - [anon_sym_await] = ACTIONS(342), - [anon_sym_in] = ACTIONS(344), - [anon_sym_COLON] = ACTIONS(336), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_RBRACK] = ACTIONS(336), - [anon_sym_LT] = ACTIONS(350), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_DOT] = ACTIONS(344), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_QMARK_DOT] = ACTIONS(336), - [anon_sym_new] = ACTIONS(360), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_GT_GT] = ACTIONS(344), - [anon_sym_GT_GT_GT] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(336), - [anon_sym_AMP] = ACTIONS(344), - [anon_sym_CARET] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_PERCENT] = ACTIONS(336), - [anon_sym_STAR_STAR] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_EQ_EQ] = ACTIONS(344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_QMARK_QMARK] = ACTIONS(336), - [anon_sym_instanceof] = ACTIONS(344), - [anon_sym_BANG] = ACTIONS(362), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(89), + [anon_sym_get] = ACTIONS(89), + [anon_sym_set] = ACTIONS(89), }, - [45] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(455), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(386), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_RBRACE] = ACTIONS(336), - [anon_sym_import] = ACTIONS(390), + [53] = { + [sym_export_statement] = STATE(302), + [sym_declaration] = STATE(302), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(302), + [sym_expression_statement] = STATE(302), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(302), + [sym_if_statement] = STATE(302), + [sym_switch_statement] = STATE(302), + [sym_for_statement] = STATE(302), + [sym_for_in_statement] = STATE(302), + [sym_while_statement] = STATE(302), + [sym_do_statement] = STATE(302), + [sym_try_statement] = STATE(302), + [sym_with_statement] = STATE(302), + [sym_break_statement] = STATE(302), + [sym_continue_statement] = STATE(302), + [sym_debugger_statement] = STATE(302), + [sym_return_statement] = STATE(302), + [sym_throw_statement] = STATE(302), + [sym_empty_statement] = STATE(302), + [sym_labeled_statement] = STATE(302), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(968), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_import] = ACTIONS(15), + [anon_sym_var] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_const] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_in] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(336), + [anon_sym_while] = ACTIONS(31), + [anon_sym_do] = ACTIONS(33), + [anon_sym_try] = ACTIONS(35), + [anon_sym_with] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_debugger] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_throw] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(344), + [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_DOT] = ACTIONS(344), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), - [anon_sym_QMARK_DOT] = ACTIONS(336), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_GT_GT] = ACTIONS(344), - [anon_sym_GT_GT_GT] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(336), - [anon_sym_AMP] = ACTIONS(344), - [anon_sym_CARET] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(344), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), - [anon_sym_PERCENT] = ACTIONS(336), - [anon_sym_STAR_STAR] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_EQ_EQ] = ACTIONS(344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_QMARK_QMARK] = ACTIONS(336), - [anon_sym_instanceof] = ACTIONS(344), - [anon_sym_BANG] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(69), [anon_sym_typeof] = ACTIONS(71), [anon_sym_void] = ACTIONS(71), @@ -11310,1651 +12408,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), - [sym__automatic_semicolon] = ACTIONS(336), - }, - [46] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(625), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_in] = ACTIONS(344), - [anon_sym_COLON] = ACTIONS(336), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(350), - [anon_sym_GT] = ACTIONS(344), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_DOT] = ACTIONS(344), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_QMARK_DOT] = ACTIONS(336), - [anon_sym_new] = ACTIONS(416), - [anon_sym_QMARK] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_GT_GT] = ACTIONS(344), - [anon_sym_GT_GT_GT] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(336), - [anon_sym_AMP] = ACTIONS(344), - [anon_sym_CARET] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_PERCENT] = ACTIONS(336), - [anon_sym_STAR_STAR] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_EQ_EQ] = ACTIONS(344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(336), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_QMARK_QMARK] = ACTIONS(336), - [anon_sym_instanceof] = ACTIONS(344), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - }, - [47] = { - [ts_builtin_sym_end] = ACTIONS(428), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_default] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_COMMA] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(428), - [anon_sym_import] = ACTIONS(430), - [anon_sym_var] = ACTIONS(430), - [anon_sym_let] = ACTIONS(430), - [anon_sym_const] = ACTIONS(430), - [anon_sym_else] = ACTIONS(430), - [anon_sym_if] = ACTIONS(430), - [anon_sym_switch] = ACTIONS(430), - [anon_sym_for] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(428), - [anon_sym_await] = ACTIONS(430), - [anon_sym_in] = ACTIONS(432), - [anon_sym_while] = ACTIONS(430), - [anon_sym_do] = ACTIONS(430), - [anon_sym_try] = ACTIONS(430), - [anon_sym_with] = ACTIONS(430), - [anon_sym_break] = ACTIONS(430), - [anon_sym_continue] = ACTIONS(430), - [anon_sym_debugger] = ACTIONS(430), - [anon_sym_return] = ACTIONS(430), - [anon_sym_throw] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(428), - [anon_sym_case] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(430), - [anon_sym_EQ] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(428), - [anon_sym_LT] = ACTIONS(430), - [anon_sym_GT] = ACTIONS(432), - [anon_sym_SLASH] = ACTIONS(430), - [anon_sym_DOT] = ACTIONS(432), - [anon_sym_class] = ACTIONS(430), - [anon_sym_async] = ACTIONS(430), - [anon_sym_function] = ACTIONS(430), - [anon_sym_QMARK_DOT] = ACTIONS(434), - [anon_sym_new] = ACTIONS(430), - [anon_sym_QMARK] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(434), - [anon_sym_PIPE_PIPE] = ACTIONS(434), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_GT_GT_GT] = ACTIONS(434), - [anon_sym_LT_LT] = ACTIONS(434), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(434), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_PLUS] = ACTIONS(430), - [anon_sym_DASH] = ACTIONS(430), - [anon_sym_PERCENT] = ACTIONS(434), - [anon_sym_STAR_STAR] = ACTIONS(434), - [anon_sym_LT_EQ] = ACTIONS(434), - [anon_sym_EQ_EQ] = ACTIONS(432), - [anon_sym_EQ_EQ_EQ] = ACTIONS(434), - [anon_sym_BANG_EQ] = ACTIONS(432), - [anon_sym_BANG_EQ_EQ] = ACTIONS(434), - [anon_sym_GT_EQ] = ACTIONS(434), - [anon_sym_QMARK_QMARK] = ACTIONS(434), - [anon_sym_instanceof] = ACTIONS(432), - [anon_sym_BANG] = ACTIONS(430), - [anon_sym_TILDE] = ACTIONS(428), - [anon_sym_typeof] = ACTIONS(430), - [anon_sym_void] = ACTIONS(430), - [anon_sym_delete] = ACTIONS(430), - [anon_sym_PLUS_PLUS] = ACTIONS(428), - [anon_sym_DASH_DASH] = ACTIONS(428), - [anon_sym_DQUOTE] = ACTIONS(428), - [anon_sym_SQUOTE] = ACTIONS(428), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(428), - [sym_number] = ACTIONS(428), - [sym_this] = ACTIONS(430), - [sym_super] = ACTIONS(430), - [sym_true] = ACTIONS(430), - [sym_false] = ACTIONS(430), - [sym_null] = ACTIONS(430), - [sym_undefined] = ACTIONS(430), - [anon_sym_AT] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), - [sym__automatic_semicolon] = ACTIONS(438), - }, - [48] = { - [ts_builtin_sym_end] = ACTIONS(440), - [sym_identifier] = ACTIONS(442), - [anon_sym_export] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(442), - [anon_sym_default] = ACTIONS(442), - [anon_sym_LBRACE] = ACTIONS(440), - [anon_sym_COMMA] = ACTIONS(440), - [anon_sym_RBRACE] = ACTIONS(440), - [anon_sym_import] = ACTIONS(442), - [anon_sym_var] = ACTIONS(442), - [anon_sym_let] = ACTIONS(442), - [anon_sym_const] = ACTIONS(442), - [anon_sym_else] = ACTIONS(442), - [anon_sym_if] = ACTIONS(442), - [anon_sym_switch] = ACTIONS(442), - [anon_sym_for] = ACTIONS(442), - [anon_sym_LPAREN] = ACTIONS(440), - [anon_sym_await] = ACTIONS(442), - [anon_sym_in] = ACTIONS(442), - [anon_sym_while] = ACTIONS(442), - [anon_sym_do] = ACTIONS(442), - [anon_sym_try] = ACTIONS(442), - [anon_sym_with] = ACTIONS(442), - [anon_sym_break] = ACTIONS(442), - [anon_sym_continue] = ACTIONS(442), - [anon_sym_debugger] = ACTIONS(442), - [anon_sym_return] = ACTIONS(442), - [anon_sym_throw] = ACTIONS(442), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_yield] = ACTIONS(442), - [anon_sym_LBRACK] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_DOT] = ACTIONS(442), - [anon_sym_class] = ACTIONS(442), - [anon_sym_async] = ACTIONS(442), - [anon_sym_function] = ACTIONS(442), - [anon_sym_QMARK_DOT] = ACTIONS(440), - [anon_sym_new] = ACTIONS(442), - [anon_sym_QMARK] = ACTIONS(442), - [anon_sym_AMP_AMP] = ACTIONS(440), - [anon_sym_PIPE_PIPE] = ACTIONS(440), - [anon_sym_GT_GT] = ACTIONS(442), - [anon_sym_GT_GT_GT] = ACTIONS(440), - [anon_sym_LT_LT] = ACTIONS(440), - [anon_sym_AMP] = ACTIONS(442), - [anon_sym_CARET] = ACTIONS(440), - [anon_sym_PIPE] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_PERCENT] = ACTIONS(440), - [anon_sym_STAR_STAR] = ACTIONS(440), - [anon_sym_LT_EQ] = ACTIONS(440), - [anon_sym_EQ_EQ] = ACTIONS(442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(440), - [anon_sym_BANG_EQ] = ACTIONS(442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(440), - [anon_sym_GT_EQ] = ACTIONS(440), - [anon_sym_QMARK_QMARK] = ACTIONS(440), - [anon_sym_instanceof] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(440), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(440), - [anon_sym_SQUOTE] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(440), - [sym_number] = ACTIONS(440), - [sym_this] = ACTIONS(442), - [sym_super] = ACTIONS(442), - [sym_true] = ACTIONS(442), - [sym_false] = ACTIONS(442), - [sym_null] = ACTIONS(442), - [sym_undefined] = ACTIONS(442), - [anon_sym_AT] = ACTIONS(440), - [anon_sym_static] = ACTIONS(442), - [anon_sym_get] = ACTIONS(442), - [anon_sym_set] = ACTIONS(442), - [sym__automatic_semicolon] = ACTIONS(444), - }, - [49] = { - [ts_builtin_sym_end] = ACTIONS(428), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(430), - [anon_sym_default] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_COMMA] = ACTIONS(428), - [anon_sym_RBRACE] = ACTIONS(428), - [anon_sym_import] = ACTIONS(430), - [anon_sym_var] = ACTIONS(430), - [anon_sym_let] = ACTIONS(430), - [anon_sym_const] = ACTIONS(430), - [anon_sym_else] = ACTIONS(430), - [anon_sym_if] = ACTIONS(430), - [anon_sym_switch] = ACTIONS(430), - [anon_sym_for] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(428), - [anon_sym_await] = ACTIONS(430), - [anon_sym_in] = ACTIONS(430), - [anon_sym_while] = ACTIONS(430), - [anon_sym_do] = ACTIONS(430), - [anon_sym_try] = ACTIONS(430), - [anon_sym_with] = ACTIONS(430), - [anon_sym_break] = ACTIONS(430), - [anon_sym_continue] = ACTIONS(430), - [anon_sym_debugger] = ACTIONS(430), - [anon_sym_return] = ACTIONS(430), - [anon_sym_throw] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(428), - [anon_sym_case] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(428), - [anon_sym_LT] = ACTIONS(430), - [anon_sym_GT] = ACTIONS(430), - [anon_sym_SLASH] = ACTIONS(430), - [anon_sym_DOT] = ACTIONS(430), - [anon_sym_class] = ACTIONS(430), - [anon_sym_async] = ACTIONS(430), - [anon_sym_function] = ACTIONS(430), - [anon_sym_QMARK_DOT] = ACTIONS(428), - [anon_sym_new] = ACTIONS(430), - [anon_sym_QMARK] = ACTIONS(430), - [anon_sym_AMP_AMP] = ACTIONS(428), - [anon_sym_PIPE_PIPE] = ACTIONS(428), - [anon_sym_GT_GT] = ACTIONS(430), - [anon_sym_GT_GT_GT] = ACTIONS(428), - [anon_sym_LT_LT] = ACTIONS(428), - [anon_sym_AMP] = ACTIONS(430), - [anon_sym_CARET] = ACTIONS(428), - [anon_sym_PIPE] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(430), - [anon_sym_DASH] = ACTIONS(430), - [anon_sym_PERCENT] = ACTIONS(428), - [anon_sym_STAR_STAR] = ACTIONS(428), - [anon_sym_LT_EQ] = ACTIONS(428), - [anon_sym_EQ_EQ] = ACTIONS(430), - [anon_sym_EQ_EQ_EQ] = ACTIONS(428), - [anon_sym_BANG_EQ] = ACTIONS(430), - [anon_sym_BANG_EQ_EQ] = ACTIONS(428), - [anon_sym_GT_EQ] = ACTIONS(428), - [anon_sym_QMARK_QMARK] = ACTIONS(428), - [anon_sym_instanceof] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(430), - [anon_sym_TILDE] = ACTIONS(428), - [anon_sym_typeof] = ACTIONS(430), - [anon_sym_void] = ACTIONS(430), - [anon_sym_delete] = ACTIONS(430), - [anon_sym_PLUS_PLUS] = ACTIONS(428), - [anon_sym_DASH_DASH] = ACTIONS(428), - [anon_sym_DQUOTE] = ACTIONS(428), - [anon_sym_SQUOTE] = ACTIONS(428), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(428), - [sym_number] = ACTIONS(428), - [sym_this] = ACTIONS(430), - [sym_super] = ACTIONS(430), - [sym_true] = ACTIONS(430), - [sym_false] = ACTIONS(430), - [sym_null] = ACTIONS(430), - [sym_undefined] = ACTIONS(430), - [anon_sym_AT] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), - [sym__automatic_semicolon] = ACTIONS(446), - }, - [50] = { - [ts_builtin_sym_end] = ACTIONS(448), - [sym_identifier] = ACTIONS(450), - [anon_sym_export] = ACTIONS(450), - [anon_sym_STAR] = ACTIONS(452), - [anon_sym_default] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(448), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_RBRACE] = ACTIONS(448), - [anon_sym_import] = ACTIONS(450), - [anon_sym_var] = ACTIONS(450), - [anon_sym_let] = ACTIONS(450), - [anon_sym_const] = ACTIONS(450), - [anon_sym_else] = ACTIONS(450), - [anon_sym_if] = ACTIONS(450), - [anon_sym_switch] = ACTIONS(450), - [anon_sym_for] = ACTIONS(450), - [anon_sym_LPAREN] = ACTIONS(448), - [anon_sym_await] = ACTIONS(450), - [anon_sym_in] = ACTIONS(452), - [anon_sym_while] = ACTIONS(450), - [anon_sym_do] = ACTIONS(450), - [anon_sym_try] = ACTIONS(450), - [anon_sym_with] = ACTIONS(450), - [anon_sym_break] = ACTIONS(450), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_debugger] = ACTIONS(450), - [anon_sym_return] = ACTIONS(450), - [anon_sym_throw] = ACTIONS(450), - [anon_sym_SEMI] = ACTIONS(448), - [anon_sym_case] = ACTIONS(450), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(448), - [anon_sym_LT] = ACTIONS(450), - [anon_sym_GT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(450), - [anon_sym_DOT] = ACTIONS(452), - [anon_sym_class] = ACTIONS(450), - [anon_sym_async] = ACTIONS(450), - [anon_sym_function] = ACTIONS(450), - [anon_sym_QMARK_DOT] = ACTIONS(454), - [anon_sym_new] = ACTIONS(450), - [anon_sym_QMARK] = ACTIONS(452), - [anon_sym_AMP_AMP] = ACTIONS(454), - [anon_sym_PIPE_PIPE] = ACTIONS(454), - [anon_sym_GT_GT] = ACTIONS(452), - [anon_sym_GT_GT_GT] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(452), - [anon_sym_CARET] = ACTIONS(454), - [anon_sym_PIPE] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(454), - [anon_sym_STAR_STAR] = ACTIONS(454), - [anon_sym_LT_EQ] = ACTIONS(454), - [anon_sym_EQ_EQ] = ACTIONS(452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(454), - [anon_sym_BANG_EQ] = ACTIONS(452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(454), - [anon_sym_GT_EQ] = ACTIONS(454), - [anon_sym_QMARK_QMARK] = ACTIONS(454), - [anon_sym_instanceof] = ACTIONS(452), - [anon_sym_BANG] = ACTIONS(450), - [anon_sym_TILDE] = ACTIONS(448), - [anon_sym_typeof] = ACTIONS(450), - [anon_sym_void] = ACTIONS(450), - [anon_sym_delete] = ACTIONS(450), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [anon_sym_DQUOTE] = ACTIONS(448), - [anon_sym_SQUOTE] = ACTIONS(448), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(448), - [sym_number] = ACTIONS(448), - [sym_this] = ACTIONS(450), - [sym_super] = ACTIONS(450), - [sym_true] = ACTIONS(450), - [sym_false] = ACTIONS(450), - [sym_null] = ACTIONS(450), - [sym_undefined] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(448), - [anon_sym_static] = ACTIONS(450), - [anon_sym_get] = ACTIONS(450), - [anon_sym_set] = ACTIONS(450), - [sym__automatic_semicolon] = ACTIONS(456), - }, - [51] = { - [ts_builtin_sym_end] = ACTIONS(458), - [sym_identifier] = ACTIONS(460), - [anon_sym_export] = ACTIONS(460), - [anon_sym_STAR] = ACTIONS(462), - [anon_sym_default] = ACTIONS(460), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_COMMA] = ACTIONS(464), - [anon_sym_RBRACE] = ACTIONS(458), - [anon_sym_import] = ACTIONS(460), - [anon_sym_var] = ACTIONS(460), - [anon_sym_let] = ACTIONS(460), - [anon_sym_const] = ACTIONS(460), - [anon_sym_else] = ACTIONS(460), - [anon_sym_if] = ACTIONS(460), - [anon_sym_switch] = ACTIONS(460), - [anon_sym_for] = ACTIONS(460), - [anon_sym_LPAREN] = ACTIONS(458), - [anon_sym_await] = ACTIONS(460), - [anon_sym_in] = ACTIONS(462), - [anon_sym_while] = ACTIONS(460), - [anon_sym_do] = ACTIONS(460), - [anon_sym_try] = ACTIONS(460), - [anon_sym_with] = ACTIONS(460), - [anon_sym_break] = ACTIONS(460), - [anon_sym_continue] = ACTIONS(460), - [anon_sym_debugger] = ACTIONS(460), - [anon_sym_return] = ACTIONS(460), - [anon_sym_throw] = ACTIONS(460), - [anon_sym_SEMI] = ACTIONS(458), - [anon_sym_case] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(460), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LT] = ACTIONS(460), - [anon_sym_GT] = ACTIONS(462), - [anon_sym_SLASH] = ACTIONS(460), - [anon_sym_DOT] = ACTIONS(462), - [anon_sym_class] = ACTIONS(460), - [anon_sym_async] = ACTIONS(460), - [anon_sym_function] = ACTIONS(460), - [anon_sym_QMARK_DOT] = ACTIONS(464), - [anon_sym_new] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(462), - [anon_sym_AMP_AMP] = ACTIONS(464), - [anon_sym_PIPE_PIPE] = ACTIONS(464), - [anon_sym_GT_GT] = ACTIONS(462), - [anon_sym_GT_GT_GT] = ACTIONS(464), - [anon_sym_LT_LT] = ACTIONS(464), - [anon_sym_AMP] = ACTIONS(462), - [anon_sym_CARET] = ACTIONS(464), - [anon_sym_PIPE] = ACTIONS(462), - [anon_sym_PLUS] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_PERCENT] = ACTIONS(464), - [anon_sym_STAR_STAR] = ACTIONS(464), - [anon_sym_LT_EQ] = ACTIONS(464), - [anon_sym_EQ_EQ] = ACTIONS(462), - [anon_sym_EQ_EQ_EQ] = ACTIONS(464), - [anon_sym_BANG_EQ] = ACTIONS(462), - [anon_sym_BANG_EQ_EQ] = ACTIONS(464), - [anon_sym_GT_EQ] = ACTIONS(464), - [anon_sym_QMARK_QMARK] = ACTIONS(464), - [anon_sym_instanceof] = ACTIONS(462), - [anon_sym_BANG] = ACTIONS(460), - [anon_sym_TILDE] = ACTIONS(458), - [anon_sym_typeof] = ACTIONS(460), - [anon_sym_void] = ACTIONS(460), - [anon_sym_delete] = ACTIONS(460), - [anon_sym_PLUS_PLUS] = ACTIONS(458), - [anon_sym_DASH_DASH] = ACTIONS(458), - [anon_sym_DQUOTE] = ACTIONS(458), - [anon_sym_SQUOTE] = ACTIONS(458), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(458), - [sym_number] = ACTIONS(458), - [sym_this] = ACTIONS(460), - [sym_super] = ACTIONS(460), - [sym_true] = ACTIONS(460), - [sym_false] = ACTIONS(460), - [sym_null] = ACTIONS(460), - [sym_undefined] = ACTIONS(460), - [anon_sym_AT] = ACTIONS(458), - [anon_sym_static] = ACTIONS(460), - [anon_sym_get] = ACTIONS(460), - [anon_sym_set] = ACTIONS(460), - [sym__automatic_semicolon] = ACTIONS(466), - }, - [52] = { - [ts_builtin_sym_end] = ACTIONS(468), - [sym_identifier] = ACTIONS(470), - [anon_sym_export] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_default] = ACTIONS(470), - [anon_sym_LBRACE] = ACTIONS(468), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_RBRACE] = ACTIONS(468), - [anon_sym_import] = ACTIONS(470), - [anon_sym_var] = ACTIONS(470), - [anon_sym_let] = ACTIONS(470), - [anon_sym_const] = ACTIONS(470), - [anon_sym_else] = ACTIONS(470), - [anon_sym_if] = ACTIONS(470), - [anon_sym_switch] = ACTIONS(470), - [anon_sym_for] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(468), - [anon_sym_await] = ACTIONS(470), - [anon_sym_in] = ACTIONS(472), - [anon_sym_while] = ACTIONS(470), - [anon_sym_do] = ACTIONS(470), - [anon_sym_try] = ACTIONS(470), - [anon_sym_with] = ACTIONS(470), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(470), - [anon_sym_debugger] = ACTIONS(470), - [anon_sym_return] = ACTIONS(470), - [anon_sym_throw] = ACTIONS(470), - [anon_sym_SEMI] = ACTIONS(468), - [anon_sym_case] = ACTIONS(470), - [anon_sym_yield] = ACTIONS(470), - [anon_sym_LBRACK] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(470), - [anon_sym_GT] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(470), - [anon_sym_DOT] = ACTIONS(472), - [anon_sym_class] = ACTIONS(470), - [anon_sym_async] = ACTIONS(470), - [anon_sym_function] = ACTIONS(470), - [anon_sym_QMARK_DOT] = ACTIONS(474), - [anon_sym_new] = ACTIONS(470), - [anon_sym_QMARK] = ACTIONS(472), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_GT_GT] = ACTIONS(472), - [anon_sym_GT_GT_GT] = ACTIONS(474), - [anon_sym_LT_LT] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(472), - [anon_sym_CARET] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(472), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_PERCENT] = ACTIONS(474), - [anon_sym_STAR_STAR] = ACTIONS(474), - [anon_sym_LT_EQ] = ACTIONS(474), - [anon_sym_EQ_EQ] = ACTIONS(472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(474), - [anon_sym_BANG_EQ] = ACTIONS(472), - [anon_sym_BANG_EQ_EQ] = ACTIONS(474), - [anon_sym_GT_EQ] = ACTIONS(474), - [anon_sym_QMARK_QMARK] = ACTIONS(474), - [anon_sym_instanceof] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(470), - [anon_sym_TILDE] = ACTIONS(468), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(468), - [anon_sym_DASH_DASH] = ACTIONS(468), - [anon_sym_DQUOTE] = ACTIONS(468), - [anon_sym_SQUOTE] = ACTIONS(468), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(468), - [sym_number] = ACTIONS(468), - [sym_this] = ACTIONS(470), - [sym_super] = ACTIONS(470), - [sym_true] = ACTIONS(470), - [sym_false] = ACTIONS(470), - [sym_null] = ACTIONS(470), - [sym_undefined] = ACTIONS(470), - [anon_sym_AT] = ACTIONS(468), - [anon_sym_static] = ACTIONS(470), - [anon_sym_get] = ACTIONS(470), - [anon_sym_set] = ACTIONS(470), - [sym__automatic_semicolon] = ACTIONS(476), - }, - [53] = { - [ts_builtin_sym_end] = ACTIONS(478), - [sym_identifier] = ACTIONS(480), - [anon_sym_export] = ACTIONS(480), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_default] = ACTIONS(480), - [anon_sym_LBRACE] = ACTIONS(478), - [anon_sym_COMMA] = ACTIONS(484), - [anon_sym_RBRACE] = ACTIONS(478), - [anon_sym_import] = ACTIONS(480), - [anon_sym_var] = ACTIONS(480), - [anon_sym_let] = ACTIONS(480), - [anon_sym_const] = ACTIONS(480), - [anon_sym_else] = ACTIONS(480), - [anon_sym_if] = ACTIONS(480), - [anon_sym_switch] = ACTIONS(480), - [anon_sym_for] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(478), - [anon_sym_await] = ACTIONS(480), - [anon_sym_in] = ACTIONS(482), - [anon_sym_while] = ACTIONS(480), - [anon_sym_do] = ACTIONS(480), - [anon_sym_try] = ACTIONS(480), - [anon_sym_with] = ACTIONS(480), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(480), - [anon_sym_debugger] = ACTIONS(480), - [anon_sym_return] = ACTIONS(480), - [anon_sym_throw] = ACTIONS(480), - [anon_sym_SEMI] = ACTIONS(478), - [anon_sym_case] = ACTIONS(480), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_LBRACK] = ACTIONS(478), - [anon_sym_LT] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_SLASH] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [anon_sym_class] = ACTIONS(480), - [anon_sym_async] = ACTIONS(480), - [anon_sym_function] = ACTIONS(480), - [anon_sym_QMARK_DOT] = ACTIONS(484), - [anon_sym_new] = ACTIONS(480), - [anon_sym_QMARK] = ACTIONS(482), - [anon_sym_AMP_AMP] = ACTIONS(484), - [anon_sym_PIPE_PIPE] = ACTIONS(484), - [anon_sym_GT_GT] = ACTIONS(482), - [anon_sym_GT_GT_GT] = ACTIONS(484), - [anon_sym_LT_LT] = ACTIONS(484), - [anon_sym_AMP] = ACTIONS(482), - [anon_sym_CARET] = ACTIONS(484), - [anon_sym_PIPE] = ACTIONS(482), - [anon_sym_PLUS] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(480), - [anon_sym_PERCENT] = ACTIONS(484), - [anon_sym_STAR_STAR] = ACTIONS(484), - [anon_sym_LT_EQ] = ACTIONS(484), - [anon_sym_EQ_EQ] = ACTIONS(482), - [anon_sym_EQ_EQ_EQ] = ACTIONS(484), - [anon_sym_BANG_EQ] = ACTIONS(482), - [anon_sym_BANG_EQ_EQ] = ACTIONS(484), - [anon_sym_GT_EQ] = ACTIONS(484), - [anon_sym_QMARK_QMARK] = ACTIONS(484), - [anon_sym_instanceof] = ACTIONS(482), - [anon_sym_BANG] = ACTIONS(480), - [anon_sym_TILDE] = ACTIONS(478), - [anon_sym_typeof] = ACTIONS(480), - [anon_sym_void] = ACTIONS(480), - [anon_sym_delete] = ACTIONS(480), - [anon_sym_PLUS_PLUS] = ACTIONS(478), - [anon_sym_DASH_DASH] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(478), - [anon_sym_SQUOTE] = ACTIONS(478), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(478), - [sym_number] = ACTIONS(478), - [sym_this] = ACTIONS(480), - [sym_super] = ACTIONS(480), - [sym_true] = ACTIONS(480), - [sym_false] = ACTIONS(480), - [sym_null] = ACTIONS(480), - [sym_undefined] = ACTIONS(480), - [anon_sym_AT] = ACTIONS(478), - [anon_sym_static] = ACTIONS(480), - [anon_sym_get] = ACTIONS(480), - [anon_sym_set] = ACTIONS(480), - [sym__automatic_semicolon] = ACTIONS(486), + [anon_sym_static] = ACTIONS(89), + [anon_sym_get] = ACTIONS(89), + [anon_sym_set] = ACTIONS(89), }, [54] = { - [ts_builtin_sym_end] = ACTIONS(488), - [sym_identifier] = ACTIONS(490), - [anon_sym_export] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_default] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(488), - [anon_sym_COMMA] = ACTIONS(494), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_import] = ACTIONS(490), - [anon_sym_var] = ACTIONS(490), - [anon_sym_let] = ACTIONS(490), - [anon_sym_const] = ACTIONS(490), - [anon_sym_else] = ACTIONS(490), - [anon_sym_if] = ACTIONS(490), - [anon_sym_switch] = ACTIONS(490), - [anon_sym_for] = ACTIONS(490), - [anon_sym_LPAREN] = ACTIONS(488), - [anon_sym_await] = ACTIONS(490), - [anon_sym_in] = ACTIONS(492), - [anon_sym_while] = ACTIONS(490), - [anon_sym_do] = ACTIONS(490), - [anon_sym_try] = ACTIONS(490), - [anon_sym_with] = ACTIONS(490), - [anon_sym_break] = ACTIONS(490), - [anon_sym_continue] = ACTIONS(490), - [anon_sym_debugger] = ACTIONS(490), - [anon_sym_return] = ACTIONS(490), - [anon_sym_throw] = ACTIONS(490), - [anon_sym_SEMI] = ACTIONS(488), - [anon_sym_case] = ACTIONS(490), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LT] = ACTIONS(490), - [anon_sym_GT] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(490), - [anon_sym_DOT] = ACTIONS(492), - [anon_sym_class] = ACTIONS(490), - [anon_sym_async] = ACTIONS(490), - [anon_sym_function] = ACTIONS(490), - [anon_sym_QMARK_DOT] = ACTIONS(494), - [anon_sym_new] = ACTIONS(490), - [anon_sym_QMARK] = ACTIONS(492), - [anon_sym_AMP_AMP] = ACTIONS(494), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_GT_GT] = ACTIONS(492), - [anon_sym_GT_GT_GT] = ACTIONS(494), - [anon_sym_LT_LT] = ACTIONS(494), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_CARET] = ACTIONS(494), - [anon_sym_PIPE] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_PERCENT] = ACTIONS(494), - [anon_sym_STAR_STAR] = ACTIONS(494), - [anon_sym_LT_EQ] = ACTIONS(494), - [anon_sym_EQ_EQ] = ACTIONS(492), - [anon_sym_EQ_EQ_EQ] = ACTIONS(494), - [anon_sym_BANG_EQ] = ACTIONS(492), - [anon_sym_BANG_EQ_EQ] = ACTIONS(494), - [anon_sym_GT_EQ] = ACTIONS(494), - [anon_sym_QMARK_QMARK] = ACTIONS(494), - [anon_sym_instanceof] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(490), - [anon_sym_TILDE] = ACTIONS(488), - [anon_sym_typeof] = ACTIONS(490), - [anon_sym_void] = ACTIONS(490), - [anon_sym_delete] = ACTIONS(490), - [anon_sym_PLUS_PLUS] = ACTIONS(488), - [anon_sym_DASH_DASH] = ACTIONS(488), - [anon_sym_DQUOTE] = ACTIONS(488), - [anon_sym_SQUOTE] = ACTIONS(488), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(488), - [sym_number] = ACTIONS(488), - [sym_this] = ACTIONS(490), - [sym_super] = ACTIONS(490), - [sym_true] = ACTIONS(490), - [sym_false] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [sym_undefined] = ACTIONS(490), - [anon_sym_AT] = ACTIONS(488), - [anon_sym_static] = ACTIONS(490), - [anon_sym_get] = ACTIONS(490), - [anon_sym_set] = ACTIONS(490), - [sym__automatic_semicolon] = ACTIONS(496), - }, - [55] = { - [ts_builtin_sym_end] = ACTIONS(440), - [sym_identifier] = ACTIONS(442), - [anon_sym_export] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(442), - [anon_sym_default] = ACTIONS(442), - [anon_sym_LBRACE] = ACTIONS(440), - [anon_sym_COMMA] = ACTIONS(440), - [anon_sym_RBRACE] = ACTIONS(440), - [anon_sym_import] = ACTIONS(442), - [anon_sym_var] = ACTIONS(442), - [anon_sym_let] = ACTIONS(442), - [anon_sym_const] = ACTIONS(442), - [anon_sym_else] = ACTIONS(442), - [anon_sym_if] = ACTIONS(442), - [anon_sym_switch] = ACTIONS(442), - [anon_sym_for] = ACTIONS(442), - [anon_sym_LPAREN] = ACTIONS(440), - [anon_sym_await] = ACTIONS(442), - [anon_sym_in] = ACTIONS(442), - [anon_sym_while] = ACTIONS(442), - [anon_sym_do] = ACTIONS(442), - [anon_sym_try] = ACTIONS(442), - [anon_sym_with] = ACTIONS(442), - [anon_sym_break] = ACTIONS(442), - [anon_sym_continue] = ACTIONS(442), - [anon_sym_debugger] = ACTIONS(442), - [anon_sym_return] = ACTIONS(442), - [anon_sym_throw] = ACTIONS(442), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_yield] = ACTIONS(442), - [anon_sym_LBRACK] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(442), - [anon_sym_GT] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_DOT] = ACTIONS(442), - [anon_sym_class] = ACTIONS(442), - [anon_sym_async] = ACTIONS(442), - [anon_sym_function] = ACTIONS(442), - [anon_sym_QMARK_DOT] = ACTIONS(440), - [anon_sym_new] = ACTIONS(442), - [anon_sym_QMARK] = ACTIONS(442), - [anon_sym_AMP_AMP] = ACTIONS(440), - [anon_sym_PIPE_PIPE] = ACTIONS(440), - [anon_sym_GT_GT] = ACTIONS(442), - [anon_sym_GT_GT_GT] = ACTIONS(440), - [anon_sym_LT_LT] = ACTIONS(440), - [anon_sym_AMP] = ACTIONS(442), - [anon_sym_CARET] = ACTIONS(440), - [anon_sym_PIPE] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_PERCENT] = ACTIONS(440), - [anon_sym_STAR_STAR] = ACTIONS(440), - [anon_sym_LT_EQ] = ACTIONS(440), - [anon_sym_EQ_EQ] = ACTIONS(442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(440), - [anon_sym_BANG_EQ] = ACTIONS(442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(440), - [anon_sym_GT_EQ] = ACTIONS(440), - [anon_sym_QMARK_QMARK] = ACTIONS(440), - [anon_sym_instanceof] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(440), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(440), - [anon_sym_SQUOTE] = ACTIONS(440), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(440), - [sym_number] = ACTIONS(440), - [sym_this] = ACTIONS(442), - [sym_super] = ACTIONS(442), - [sym_true] = ACTIONS(442), - [sym_false] = ACTIONS(442), - [sym_null] = ACTIONS(442), - [sym_undefined] = ACTIONS(442), - [anon_sym_AT] = ACTIONS(440), - [anon_sym_static] = ACTIONS(442), - [anon_sym_get] = ACTIONS(442), - [anon_sym_set] = ACTIONS(442), - [sym__automatic_semicolon] = ACTIONS(440), - }, - [56] = { - [ts_builtin_sym_end] = ACTIONS(498), - [sym_identifier] = ACTIONS(500), - [anon_sym_export] = ACTIONS(500), - [anon_sym_STAR] = ACTIONS(502), - [anon_sym_default] = ACTIONS(500), - [anon_sym_LBRACE] = ACTIONS(498), - [anon_sym_COMMA] = ACTIONS(504), - [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_import] = ACTIONS(500), - [anon_sym_var] = ACTIONS(500), - [anon_sym_let] = ACTIONS(500), - [anon_sym_const] = ACTIONS(500), - [anon_sym_else] = ACTIONS(500), - [anon_sym_if] = ACTIONS(500), - [anon_sym_switch] = ACTIONS(500), - [anon_sym_for] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(498), - [anon_sym_await] = ACTIONS(500), - [anon_sym_in] = ACTIONS(502), - [anon_sym_while] = ACTIONS(500), - [anon_sym_do] = ACTIONS(500), - [anon_sym_try] = ACTIONS(500), - [anon_sym_with] = ACTIONS(500), - [anon_sym_break] = ACTIONS(500), - [anon_sym_continue] = ACTIONS(500), - [anon_sym_debugger] = ACTIONS(500), - [anon_sym_return] = ACTIONS(500), - [anon_sym_throw] = ACTIONS(500), - [anon_sym_SEMI] = ACTIONS(498), - [anon_sym_case] = ACTIONS(500), - [anon_sym_yield] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(502), - [anon_sym_SLASH] = ACTIONS(500), - [anon_sym_DOT] = ACTIONS(502), - [anon_sym_class] = ACTIONS(500), - [anon_sym_async] = ACTIONS(500), - [anon_sym_function] = ACTIONS(500), - [anon_sym_QMARK_DOT] = ACTIONS(504), - [anon_sym_new] = ACTIONS(500), - [anon_sym_QMARK] = ACTIONS(502), - [anon_sym_AMP_AMP] = ACTIONS(504), - [anon_sym_PIPE_PIPE] = ACTIONS(504), - [anon_sym_GT_GT] = ACTIONS(502), - [anon_sym_GT_GT_GT] = ACTIONS(504), - [anon_sym_LT_LT] = ACTIONS(504), - [anon_sym_AMP] = ACTIONS(502), - [anon_sym_CARET] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(502), - [anon_sym_PLUS] = ACTIONS(500), - [anon_sym_DASH] = ACTIONS(500), - [anon_sym_PERCENT] = ACTIONS(504), - [anon_sym_STAR_STAR] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(504), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_EQ_EQ_EQ] = ACTIONS(504), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ_EQ] = ACTIONS(504), - [anon_sym_GT_EQ] = ACTIONS(504), - [anon_sym_QMARK_QMARK] = ACTIONS(504), - [anon_sym_instanceof] = ACTIONS(502), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(500), - [anon_sym_void] = ACTIONS(500), - [anon_sym_delete] = ACTIONS(500), - [anon_sym_PLUS_PLUS] = ACTIONS(498), - [anon_sym_DASH_DASH] = ACTIONS(498), - [anon_sym_DQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE] = ACTIONS(498), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(498), - [sym_number] = ACTIONS(498), - [sym_this] = ACTIONS(500), - [sym_super] = ACTIONS(500), - [sym_true] = ACTIONS(500), - [sym_false] = ACTIONS(500), - [sym_null] = ACTIONS(500), - [sym_undefined] = ACTIONS(500), - [anon_sym_AT] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_get] = ACTIONS(500), - [anon_sym_set] = ACTIONS(500), - [sym__automatic_semicolon] = ACTIONS(506), - }, - [57] = { - [ts_builtin_sym_end] = ACTIONS(508), - [sym_identifier] = ACTIONS(510), - [anon_sym_export] = ACTIONS(510), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_default] = ACTIONS(510), - [anon_sym_LBRACE] = ACTIONS(508), - [anon_sym_COMMA] = ACTIONS(514), - [anon_sym_RBRACE] = ACTIONS(508), - [anon_sym_import] = ACTIONS(510), - [anon_sym_var] = ACTIONS(510), - [anon_sym_let] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_else] = ACTIONS(510), - [anon_sym_if] = ACTIONS(510), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_for] = ACTIONS(510), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_await] = ACTIONS(510), - [anon_sym_in] = ACTIONS(512), - [anon_sym_while] = ACTIONS(510), - [anon_sym_do] = ACTIONS(510), - [anon_sym_try] = ACTIONS(510), - [anon_sym_with] = ACTIONS(510), - [anon_sym_break] = ACTIONS(510), - [anon_sym_continue] = ACTIONS(510), - [anon_sym_debugger] = ACTIONS(510), - [anon_sym_return] = ACTIONS(510), - [anon_sym_throw] = ACTIONS(510), - [anon_sym_SEMI] = ACTIONS(508), - [anon_sym_case] = ACTIONS(510), - [anon_sym_yield] = ACTIONS(510), - [anon_sym_LBRACK] = ACTIONS(508), - [anon_sym_LT] = ACTIONS(510), - [anon_sym_GT] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(510), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_class] = ACTIONS(510), - [anon_sym_async] = ACTIONS(510), - [anon_sym_function] = ACTIONS(510), - [anon_sym_QMARK_DOT] = ACTIONS(514), - [anon_sym_new] = ACTIONS(510), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_AMP_AMP] = ACTIONS(514), - [anon_sym_PIPE_PIPE] = ACTIONS(514), - [anon_sym_GT_GT] = ACTIONS(512), - [anon_sym_GT_GT_GT] = ACTIONS(514), - [anon_sym_LT_LT] = ACTIONS(514), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(514), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_STAR_STAR] = ACTIONS(514), - [anon_sym_LT_EQ] = ACTIONS(514), - [anon_sym_EQ_EQ] = ACTIONS(512), - [anon_sym_EQ_EQ_EQ] = ACTIONS(514), - [anon_sym_BANG_EQ] = ACTIONS(512), - [anon_sym_BANG_EQ_EQ] = ACTIONS(514), - [anon_sym_GT_EQ] = ACTIONS(514), - [anon_sym_QMARK_QMARK] = ACTIONS(514), - [anon_sym_instanceof] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_typeof] = ACTIONS(510), - [anon_sym_void] = ACTIONS(510), - [anon_sym_delete] = ACTIONS(510), - [anon_sym_PLUS_PLUS] = ACTIONS(508), - [anon_sym_DASH_DASH] = ACTIONS(508), - [anon_sym_DQUOTE] = ACTIONS(508), - [anon_sym_SQUOTE] = ACTIONS(508), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(508), - [sym_number] = ACTIONS(508), - [sym_this] = ACTIONS(510), - [sym_super] = ACTIONS(510), - [sym_true] = ACTIONS(510), - [sym_false] = ACTIONS(510), - [sym_null] = ACTIONS(510), - [sym_undefined] = ACTIONS(510), - [anon_sym_AT] = ACTIONS(508), - [anon_sym_static] = ACTIONS(510), - [anon_sym_get] = ACTIONS(510), - [anon_sym_set] = ACTIONS(510), - [sym__automatic_semicolon] = ACTIONS(516), - }, - [58] = { - [ts_builtin_sym_end] = ACTIONS(518), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(520), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_default] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(518), - [anon_sym_COMMA] = ACTIONS(518), - [anon_sym_RBRACE] = ACTIONS(518), - [anon_sym_import] = ACTIONS(520), - [anon_sym_var] = ACTIONS(520), - [anon_sym_let] = ACTIONS(520), - [anon_sym_const] = ACTIONS(520), - [anon_sym_else] = ACTIONS(520), - [anon_sym_if] = ACTIONS(520), - [anon_sym_switch] = ACTIONS(520), - [anon_sym_for] = ACTIONS(520), - [anon_sym_LPAREN] = ACTIONS(518), - [anon_sym_await] = ACTIONS(520), - [anon_sym_in] = ACTIONS(520), - [anon_sym_while] = ACTIONS(520), - [anon_sym_do] = ACTIONS(520), - [anon_sym_try] = ACTIONS(520), - [anon_sym_with] = ACTIONS(520), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_debugger] = ACTIONS(520), - [anon_sym_return] = ACTIONS(520), - [anon_sym_throw] = ACTIONS(520), - [anon_sym_SEMI] = ACTIONS(518), - [anon_sym_case] = ACTIONS(520), - [anon_sym_yield] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(520), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_DOT] = ACTIONS(520), - [anon_sym_class] = ACTIONS(520), - [anon_sym_async] = ACTIONS(520), - [anon_sym_function] = ACTIONS(520), - [anon_sym_QMARK_DOT] = ACTIONS(518), - [anon_sym_new] = ACTIONS(520), - [anon_sym_QMARK] = ACTIONS(520), - [anon_sym_AMP_AMP] = ACTIONS(518), - [anon_sym_PIPE_PIPE] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(520), - [anon_sym_GT_GT_GT] = ACTIONS(518), - [anon_sym_LT_LT] = ACTIONS(518), - [anon_sym_AMP] = ACTIONS(520), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_STAR_STAR] = ACTIONS(518), - [anon_sym_LT_EQ] = ACTIONS(518), - [anon_sym_EQ_EQ] = ACTIONS(520), - [anon_sym_EQ_EQ_EQ] = ACTIONS(518), - [anon_sym_BANG_EQ] = ACTIONS(520), - [anon_sym_BANG_EQ_EQ] = ACTIONS(518), - [anon_sym_GT_EQ] = ACTIONS(518), - [anon_sym_QMARK_QMARK] = ACTIONS(518), - [anon_sym_instanceof] = ACTIONS(520), - [anon_sym_BANG] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(518), - [anon_sym_typeof] = ACTIONS(520), - [anon_sym_void] = ACTIONS(520), - [anon_sym_delete] = ACTIONS(520), - [anon_sym_PLUS_PLUS] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(518), - [anon_sym_SQUOTE] = ACTIONS(518), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(518), - [sym_number] = ACTIONS(518), - [sym_this] = ACTIONS(520), - [sym_super] = ACTIONS(520), - [sym_true] = ACTIONS(520), - [sym_false] = ACTIONS(520), - [sym_null] = ACTIONS(520), - [sym_undefined] = ACTIONS(520), - [anon_sym_AT] = ACTIONS(518), - [anon_sym_static] = ACTIONS(520), - [anon_sym_get] = ACTIONS(520), - [anon_sym_set] = ACTIONS(520), - [sym__automatic_semicolon] = ACTIONS(518), - }, - [59] = { - [ts_builtin_sym_end] = ACTIONS(522), - [sym_identifier] = ACTIONS(524), - [anon_sym_export] = ACTIONS(524), - [anon_sym_STAR] = ACTIONS(526), - [anon_sym_default] = ACTIONS(524), - [anon_sym_LBRACE] = ACTIONS(522), - [anon_sym_COMMA] = ACTIONS(528), - [anon_sym_RBRACE] = ACTIONS(522), - [anon_sym_import] = ACTIONS(524), - [anon_sym_var] = ACTIONS(524), - [anon_sym_let] = ACTIONS(524), - [anon_sym_const] = ACTIONS(524), - [anon_sym_else] = ACTIONS(524), - [anon_sym_if] = ACTIONS(524), - [anon_sym_switch] = ACTIONS(524), - [anon_sym_for] = ACTIONS(524), - [anon_sym_LPAREN] = ACTIONS(522), - [anon_sym_await] = ACTIONS(524), - [anon_sym_in] = ACTIONS(526), - [anon_sym_while] = ACTIONS(524), - [anon_sym_do] = ACTIONS(524), - [anon_sym_try] = ACTIONS(524), - [anon_sym_with] = ACTIONS(524), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(524), - [anon_sym_debugger] = ACTIONS(524), - [anon_sym_return] = ACTIONS(524), - [anon_sym_throw] = ACTIONS(524), - [anon_sym_SEMI] = ACTIONS(522), - [anon_sym_case] = ACTIONS(524), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_LBRACK] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(524), - [anon_sym_GT] = ACTIONS(526), - [anon_sym_SLASH] = ACTIONS(524), - [anon_sym_DOT] = ACTIONS(526), - [anon_sym_class] = ACTIONS(524), - [anon_sym_async] = ACTIONS(524), - [anon_sym_function] = ACTIONS(524), - [anon_sym_QMARK_DOT] = ACTIONS(528), - [anon_sym_new] = ACTIONS(524), - [anon_sym_QMARK] = ACTIONS(526), - [anon_sym_AMP_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(528), - [anon_sym_GT_GT] = ACTIONS(526), - [anon_sym_GT_GT_GT] = ACTIONS(528), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_AMP] = ACTIONS(526), - [anon_sym_CARET] = ACTIONS(528), - [anon_sym_PIPE] = ACTIONS(526), - [anon_sym_PLUS] = ACTIONS(524), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_STAR_STAR] = ACTIONS(528), - [anon_sym_LT_EQ] = ACTIONS(528), - [anon_sym_EQ_EQ] = ACTIONS(526), - [anon_sym_EQ_EQ_EQ] = ACTIONS(528), - [anon_sym_BANG_EQ] = ACTIONS(526), - [anon_sym_BANG_EQ_EQ] = ACTIONS(528), - [anon_sym_GT_EQ] = ACTIONS(528), - [anon_sym_QMARK_QMARK] = ACTIONS(528), - [anon_sym_instanceof] = ACTIONS(526), - [anon_sym_BANG] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(522), - [anon_sym_typeof] = ACTIONS(524), - [anon_sym_void] = ACTIONS(524), - [anon_sym_delete] = ACTIONS(524), - [anon_sym_PLUS_PLUS] = ACTIONS(522), - [anon_sym_DASH_DASH] = ACTIONS(522), - [anon_sym_DQUOTE] = ACTIONS(522), - [anon_sym_SQUOTE] = ACTIONS(522), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(522), - [sym_number] = ACTIONS(522), - [sym_this] = ACTIONS(524), - [sym_super] = ACTIONS(524), - [sym_true] = ACTIONS(524), - [sym_false] = ACTIONS(524), - [sym_null] = ACTIONS(524), - [sym_undefined] = ACTIONS(524), - [anon_sym_AT] = ACTIONS(522), - [anon_sym_static] = ACTIONS(524), - [anon_sym_get] = ACTIONS(524), - [anon_sym_set] = ACTIONS(524), - [sym__automatic_semicolon] = ACTIONS(530), - }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(532), - [sym_identifier] = ACTIONS(534), - [anon_sym_export] = ACTIONS(534), - [anon_sym_STAR] = ACTIONS(534), - [anon_sym_default] = ACTIONS(534), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(532), - [anon_sym_RBRACE] = ACTIONS(532), - [anon_sym_import] = ACTIONS(534), - [anon_sym_var] = ACTIONS(534), - [anon_sym_let] = ACTIONS(534), - [anon_sym_const] = ACTIONS(534), - [anon_sym_else] = ACTIONS(534), - [anon_sym_if] = ACTIONS(534), - [anon_sym_switch] = ACTIONS(534), - [anon_sym_for] = ACTIONS(534), - [anon_sym_LPAREN] = ACTIONS(532), - [anon_sym_await] = ACTIONS(534), - [anon_sym_in] = ACTIONS(534), - [anon_sym_while] = ACTIONS(534), - [anon_sym_do] = ACTIONS(534), - [anon_sym_try] = ACTIONS(534), - [anon_sym_with] = ACTIONS(534), - [anon_sym_break] = ACTIONS(534), - [anon_sym_continue] = ACTIONS(534), - [anon_sym_debugger] = ACTIONS(534), - [anon_sym_return] = ACTIONS(534), - [anon_sym_throw] = ACTIONS(534), - [anon_sym_SEMI] = ACTIONS(532), - [anon_sym_case] = ACTIONS(534), - [anon_sym_yield] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(532), - [anon_sym_LT] = ACTIONS(534), - [anon_sym_GT] = ACTIONS(534), - [anon_sym_SLASH] = ACTIONS(534), - [anon_sym_DOT] = ACTIONS(534), - [anon_sym_class] = ACTIONS(534), - [anon_sym_async] = ACTIONS(534), - [anon_sym_function] = ACTIONS(534), - [anon_sym_QMARK_DOT] = ACTIONS(532), - [anon_sym_new] = ACTIONS(534), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE_PIPE] = ACTIONS(532), - [anon_sym_GT_GT] = ACTIONS(534), - [anon_sym_GT_GT_GT] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(532), - [anon_sym_AMP] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_PLUS] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(532), - [anon_sym_STAR_STAR] = ACTIONS(532), - [anon_sym_LT_EQ] = ACTIONS(532), - [anon_sym_EQ_EQ] = ACTIONS(534), - [anon_sym_EQ_EQ_EQ] = ACTIONS(532), - [anon_sym_BANG_EQ] = ACTIONS(534), - [anon_sym_BANG_EQ_EQ] = ACTIONS(532), - [anon_sym_GT_EQ] = ACTIONS(532), - [anon_sym_QMARK_QMARK] = ACTIONS(532), - [anon_sym_instanceof] = ACTIONS(534), - [anon_sym_BANG] = ACTIONS(534), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_typeof] = ACTIONS(534), - [anon_sym_void] = ACTIONS(534), - [anon_sym_delete] = ACTIONS(534), - [anon_sym_PLUS_PLUS] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(532), - [anon_sym_DQUOTE] = ACTIONS(532), - [anon_sym_SQUOTE] = ACTIONS(532), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(532), - [sym_number] = ACTIONS(532), - [sym_this] = ACTIONS(534), - [sym_super] = ACTIONS(534), - [sym_true] = ACTIONS(534), - [sym_false] = ACTIONS(534), - [sym_null] = ACTIONS(534), - [sym_undefined] = ACTIONS(534), - [anon_sym_AT] = ACTIONS(532), - [anon_sym_static] = ACTIONS(534), - [anon_sym_get] = ACTIONS(534), - [anon_sym_set] = ACTIONS(534), - [sym__automatic_semicolon] = ACTIONS(532), - }, - [61] = { - [ts_builtin_sym_end] = ACTIONS(536), - [sym_identifier] = ACTIONS(538), - [anon_sym_export] = ACTIONS(538), - [anon_sym_STAR] = ACTIONS(538), - [anon_sym_default] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_COMMA] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_import] = ACTIONS(538), - [anon_sym_var] = ACTIONS(538), - [anon_sym_let] = ACTIONS(538), - [anon_sym_const] = ACTIONS(538), - [anon_sym_else] = ACTIONS(538), - [anon_sym_if] = ACTIONS(538), - [anon_sym_switch] = ACTIONS(538), - [anon_sym_for] = ACTIONS(538), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_await] = ACTIONS(538), - [anon_sym_in] = ACTIONS(538), - [anon_sym_while] = ACTIONS(538), - [anon_sym_do] = ACTIONS(538), - [anon_sym_try] = ACTIONS(538), - [anon_sym_with] = ACTIONS(538), - [anon_sym_break] = ACTIONS(538), - [anon_sym_continue] = ACTIONS(538), - [anon_sym_debugger] = ACTIONS(538), - [anon_sym_return] = ACTIONS(538), - [anon_sym_throw] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_case] = ACTIONS(538), - [anon_sym_yield] = ACTIONS(538), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_LT] = ACTIONS(538), - [anon_sym_GT] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(538), - [anon_sym_DOT] = ACTIONS(538), - [anon_sym_class] = ACTIONS(538), - [anon_sym_async] = ACTIONS(538), - [anon_sym_function] = ACTIONS(538), - [anon_sym_QMARK_DOT] = ACTIONS(536), - [anon_sym_new] = ACTIONS(538), - [anon_sym_QMARK] = ACTIONS(538), - [anon_sym_AMP_AMP] = ACTIONS(536), - [anon_sym_PIPE_PIPE] = ACTIONS(536), - [anon_sym_GT_GT] = ACTIONS(538), - [anon_sym_GT_GT_GT] = ACTIONS(536), - [anon_sym_LT_LT] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(538), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_STAR_STAR] = ACTIONS(536), - [anon_sym_LT_EQ] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_EQ_EQ_EQ] = ACTIONS(536), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ_EQ] = ACTIONS(536), - [anon_sym_GT_EQ] = ACTIONS(536), - [anon_sym_QMARK_QMARK] = ACTIONS(536), - [anon_sym_instanceof] = ACTIONS(538), - [anon_sym_BANG] = ACTIONS(538), - [anon_sym_TILDE] = ACTIONS(536), - [anon_sym_typeof] = ACTIONS(538), - [anon_sym_void] = ACTIONS(538), - [anon_sym_delete] = ACTIONS(538), - [anon_sym_PLUS_PLUS] = ACTIONS(536), - [anon_sym_DASH_DASH] = ACTIONS(536), - [anon_sym_DQUOTE] = ACTIONS(536), - [anon_sym_SQUOTE] = ACTIONS(536), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(536), - [sym_number] = ACTIONS(536), - [sym_this] = ACTIONS(538), - [sym_super] = ACTIONS(538), - [sym_true] = ACTIONS(538), - [sym_false] = ACTIONS(538), - [sym_null] = ACTIONS(538), - [sym_undefined] = ACTIONS(538), - [anon_sym_AT] = ACTIONS(536), - [anon_sym_static] = ACTIONS(538), - [anon_sym_get] = ACTIONS(538), - [anon_sym_set] = ACTIONS(538), - [sym__automatic_semicolon] = ACTIONS(536), - }, - [62] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(537), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(915), - [sym_assignment_pattern] = STATE(1075), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(915), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(915), - [sym_spread_element] = STATE(1058), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [sym_pattern] = STATE(960), - [sym_rest_pattern] = STATE(922), - [aux_sym_export_statement_repeat1] = STATE(984), - [aux_sym_array_repeat1] = STATE(1060), - [aux_sym_array_pattern_repeat1] = STATE(1053), - [sym_identifier] = ACTIONS(540), - [anon_sym_export] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_RBRACK] = ACTIONS(546), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(550), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(542), - [anon_sym_get] = ACTIONS(542), - [anon_sym_set] = ACTIONS(542), - }, - [63] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(536), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(915), - [sym_assignment_pattern] = STATE(1075), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(915), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(915), - [sym_spread_element] = STATE(1056), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [sym_pattern] = STATE(960), - [sym_rest_pattern] = STATE(922), - [aux_sym_export_statement_repeat1] = STATE(984), - [aux_sym_array_repeat1] = STATE(1054), - [aux_sym_array_pattern_repeat1] = STATE(1053), - [sym_identifier] = ACTIONS(540), - [anon_sym_export] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_RBRACK] = ACTIONS(554), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(550), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(542), - [anon_sym_get] = ACTIONS(542), - [anon_sym_set] = ACTIONS(542), - }, - [64] = { - [sym_declaration] = STATE(337), - [sym_import] = STATE(575), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(563), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(976), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [sym_export_statement] = STATE(353), + [sym_declaration] = STATE(353), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(353), + [sym_expression_statement] = STATE(353), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(353), + [sym_if_statement] = STATE(353), + [sym_switch_statement] = STATE(353), + [sym_for_statement] = STATE(353), + [sym_for_in_statement] = STATE(353), + [sym_while_statement] = STATE(353), + [sym_do_statement] = STATE(353), + [sym_try_statement] = STATE(353), + [sym_with_statement] = STATE(353), + [sym_break_statement] = STATE(353), + [sym_continue_statement] = STATE(353), + [sym_debugger_statement] = STATE(353), + [sym_return_statement] = STATE(353), + [sym_throw_statement] = STATE(353), + [sym_empty_statement] = STATE(353), + [sym_labeled_statement] = STATE(353), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(968), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), + [anon_sym_while] = ACTIONS(31), + [anon_sym_do] = ACTIONS(33), + [anon_sym_try] = ACTIONS(35), + [anon_sym_with] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_debugger] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_throw] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(320), - [anon_sym_async] = ACTIONS(556), - [anon_sym_function] = ACTIONS(324), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -12977,156 +12527,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), - }, - [65] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(537), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(915), - [sym_assignment_pattern] = STATE(1075), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(915), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(915), - [sym_spread_element] = STATE(1058), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [sym_pattern] = STATE(960), - [sym_rest_pattern] = STATE(922), - [aux_sym_export_statement_repeat1] = STATE(984), - [aux_sym_array_repeat1] = STATE(1060), - [aux_sym_array_pattern_repeat1] = STATE(1053), - [sym_identifier] = ACTIONS(540), - [anon_sym_export] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_RBRACK] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(550), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(542), - [anon_sym_get] = ACTIONS(542), - [anon_sym_set] = ACTIONS(542), + [anon_sym_static] = ACTIONS(89), + [anon_sym_get] = ACTIONS(89), + [anon_sym_set] = ACTIONS(89), }, - [66] = { - [sym_import] = STATE(575), - [sym_expression_statement] = STATE(84), - [sym_variable_declaration] = STATE(84), - [sym_lexical_declaration] = STATE(84), - [sym_empty_statement] = STATE(84), - [sym_parenthesized_expression] = STATE(373), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1071), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1071), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(373), - [sym_subscript_expression] = STATE(373), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1071), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(560), - [anon_sym_export] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(564), - [anon_sym_import] = ACTIONS(390), - [anon_sym_var] = ACTIONS(566), - [anon_sym_let] = ACTIONS(568), - [anon_sym_const] = ACTIONS(568), + [55] = { + [sym_export_statement] = STATE(296), + [sym_declaration] = STATE(296), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(296), + [sym_expression_statement] = STATE(296), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(296), + [sym_if_statement] = STATE(296), + [sym_switch_statement] = STATE(296), + [sym_for_statement] = STATE(296), + [sym_for_in_statement] = STATE(296), + [sym_while_statement] = STATE(296), + [sym_do_statement] = STATE(296), + [sym_try_statement] = STATE(296), + [sym_with_statement] = STATE(296), + [sym_break_statement] = STATE(296), + [sym_continue_statement] = STATE(296), + [sym_debugger_statement] = STATE(296), + [sym_return_statement] = STATE(296), + [sym_throw_statement] = STATE(296), + [sym_empty_statement] = STATE(296), + [sym_labeled_statement] = STATE(296), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(968), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_import] = ACTIONS(15), + [anon_sym_var] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_const] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), + [anon_sym_while] = ACTIONS(31), + [anon_sym_do] = ACTIONS(33), + [anon_sym_try] = ACTIONS(35), + [anon_sym_with] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_debugger] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(572), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -13147,71 +12644,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(574), + [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(562), - [anon_sym_get] = ACTIONS(562), - [anon_sym_set] = ACTIONS(562), + [anon_sym_static] = ACTIONS(89), + [anon_sym_get] = ACTIONS(89), + [anon_sym_set] = ACTIONS(89), }, - [67] = { - [sym_declaration] = STATE(277), - [sym_import] = STATE(575), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(640), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(962), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [56] = { + [sym_export_statement] = STATE(282), + [sym_declaration] = STATE(282), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(282), + [sym_expression_statement] = STATE(282), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(282), + [sym_if_statement] = STATE(282), + [sym_switch_statement] = STATE(282), + [sym_for_statement] = STATE(282), + [sym_for_in_statement] = STATE(282), + [sym_while_statement] = STATE(282), + [sym_do_statement] = STATE(282), + [sym_try_statement] = STATE(282), + [sym_with_statement] = STATE(282), + [sym_break_statement] = STATE(282), + [sym_continue_statement] = STATE(282), + [sym_debugger_statement] = STATE(282), + [sym_return_statement] = STATE(282), + [sym_throw_statement] = STATE(282), + [sym_empty_statement] = STATE(282), + [sym_labeled_statement] = STATE(282), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(968), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), + [anon_sym_while] = ACTIONS(31), + [anon_sym_do] = ACTIONS(33), + [anon_sym_try] = ACTIONS(35), + [anon_sym_with] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_debugger] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_throw] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(576), + [anon_sym_async] = ACTIONS(61), [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), @@ -13235,70 +12765,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(89), + [anon_sym_get] = ACTIONS(89), + [anon_sym_set] = ACTIONS(89), }, - [68] = { - [sym_declaration] = STATE(337), - [sym_import] = STATE(575), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(563), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(962), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [57] = { + [sym_export_statement] = STATE(364), + [sym_declaration] = STATE(364), + [sym_import] = STATE(645), + [sym_import_statement] = STATE(364), + [sym_expression_statement] = STATE(364), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_statement_block] = STATE(364), + [sym_if_statement] = STATE(364), + [sym_switch_statement] = STATE(364), + [sym_for_statement] = STATE(364), + [sym_for_in_statement] = STATE(364), + [sym_while_statement] = STATE(364), + [sym_do_statement] = STATE(364), + [sym_try_statement] = STATE(364), + [sym_with_statement] = STATE(364), + [sym_break_statement] = STATE(364), + [sym_continue_statement] = STATE(364), + [sym_debugger_statement] = STATE(364), + [sym_return_statement] = STATE(364), + [sym_throw_statement] = STATE(364), + [sym_empty_statement] = STATE(364), + [sym_labeled_statement] = STATE(364), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(433), + [anon_sym_export] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(437), + [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), + [anon_sym_if] = ACTIONS(439), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_for] = ACTIONS(441), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(443), + [anon_sym_while] = ACTIONS(445), + [anon_sym_do] = ACTIONS(33), + [anon_sym_try] = ACTIONS(35), + [anon_sym_with] = ACTIONS(447), + [anon_sym_break] = ACTIONS(39), + [anon_sym_continue] = ACTIONS(41), + [anon_sym_debugger] = ACTIONS(43), + [anon_sym_return] = ACTIONS(45), + [anon_sym_throw] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(576), - [anon_sym_function] = ACTIONS(63), + [anon_sym_class] = ACTIONS(449), + [anon_sym_async] = ACTIONS(451), + [anon_sym_function] = ACTIONS(453), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -13321,160 +12884,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(455), + [anon_sym_get] = ACTIONS(455), + [anon_sym_set] = ACTIONS(455), }, - [69] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(536), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(915), - [sym_assignment_pattern] = STATE(1075), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(915), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(915), - [sym_spread_element] = STATE(1056), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [sym_pattern] = STATE(960), - [sym_rest_pattern] = STATE(922), - [aux_sym_export_statement_repeat1] = STATE(984), - [aux_sym_array_repeat1] = STATE(1054), - [aux_sym_array_pattern_repeat1] = STATE(1053), - [sym_identifier] = ACTIONS(540), - [anon_sym_export] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_RBRACK] = ACTIONS(578), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(550), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [58] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(701), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(155), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_await] = ACTIONS(463), + [anon_sym_in] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_EQ] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(542), - [anon_sym_get] = ACTIONS(542), - [anon_sym_set] = ACTIONS(542), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), }, - [70] = { - [sym_import] = STATE(575), - [sym_expression_statement] = STATE(82), - [sym_variable_declaration] = STATE(82), - [sym_lexical_declaration] = STATE(82), - [sym_empty_statement] = STATE(82), - [sym_parenthesized_expression] = STATE(373), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1071), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1071), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(373), - [sym_subscript_expression] = STATE(373), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1071), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(560), - [anon_sym_export] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(564), - [anon_sym_import] = ACTIONS(390), - [anon_sym_var] = ACTIONS(566), - [anon_sym_let] = ACTIONS(568), - [anon_sym_const] = ACTIONS(568), + [59] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(714), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(155), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_await] = ACTIONS(358), + [anon_sym_in] = ACTIONS(151), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_EQ] = ACTIONS(362), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_EQ_GT] = ACTIONS(471), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + }, + [60] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(457), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_STAR] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_await] = ACTIONS(320), + [anon_sym_in] = ACTIONS(489), + [anon_sym_COLON] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_RBRACK] = ACTIONS(485), + [anon_sym_LT] = ACTIONS(493), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(489), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_QMARK_DOT] = ACTIONS(485), + [anon_sym_new] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_GT_GT_GT] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(489), + [anon_sym_CARET] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_PERCENT] = ACTIONS(485), + [anon_sym_STAR_STAR] = ACTIONS(485), + [anon_sym_LT_EQ] = ACTIONS(485), + [anon_sym_EQ_EQ] = ACTIONS(489), + [anon_sym_EQ_EQ_EQ] = ACTIONS(485), + [anon_sym_BANG_EQ] = ACTIONS(489), + [anon_sym_BANG_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(485), + [anon_sym_QMARK_QMARK] = ACTIONS(485), + [anon_sym_instanceof] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(336), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [61] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(523), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(49), + [anon_sym_await] = ACTIONS(164), + [anon_sym_in] = ACTIONS(489), + [anon_sym_SEMI] = ACTIONS(485), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(503), + [anon_sym_GT] = ACTIONS(489), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(572), - [anon_sym_function] = ACTIONS(398), + [anon_sym_DOT] = ACTIONS(489), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_QMARK_DOT] = ACTIONS(485), [anon_sym_new] = ACTIONS(65), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_GT_GT_GT] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(489), + [anon_sym_CARET] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(489), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), + [anon_sym_PERCENT] = ACTIONS(485), + [anon_sym_STAR_STAR] = ACTIONS(485), + [anon_sym_LT_EQ] = ACTIONS(485), + [anon_sym_EQ_EQ] = ACTIONS(489), + [anon_sym_EQ_EQ_EQ] = ACTIONS(485), + [anon_sym_BANG_EQ] = ACTIONS(489), + [anon_sym_BANG_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(485), + [anon_sym_QMARK_QMARK] = ACTIONS(485), + [anon_sym_instanceof] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(67), [anon_sym_TILDE] = ACTIONS(69), [anon_sym_typeof] = ACTIONS(71), [anon_sym_void] = ACTIONS(71), @@ -13491,991 +13328,1754 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(574), + [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(562), - [anon_sym_get] = ACTIONS(562), - [anon_sym_set] = ACTIONS(562), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), + [sym__automatic_semicolon] = ACTIONS(485), }, - [71] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(537), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(915), - [sym_assignment_pattern] = STATE(1075), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(915), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(915), - [sym_spread_element] = STATE(1058), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [sym_pattern] = STATE(960), - [sym_rest_pattern] = STATE(922), - [aux_sym_export_statement_repeat1] = STATE(984), - [aux_sym_array_repeat1] = STATE(1060), - [aux_sym_array_pattern_repeat1] = STATE(1053), - [sym_identifier] = ACTIONS(540), - [anon_sym_export] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_RBRACK] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(550), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [62] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(713), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_STAR] = ACTIONS(505), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_in] = ACTIONS(489), + [anon_sym_COLON] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(493), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(489), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_QMARK_DOT] = ACTIONS(485), + [anon_sym_new] = ACTIONS(366), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_GT_GT_GT] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(489), + [anon_sym_CARET] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_PERCENT] = ACTIONS(485), + [anon_sym_STAR_STAR] = ACTIONS(485), + [anon_sym_LT_EQ] = ACTIONS(485), + [anon_sym_EQ_EQ] = ACTIONS(489), + [anon_sym_EQ_EQ_EQ] = ACTIONS(485), + [anon_sym_BANG_EQ] = ACTIONS(489), + [anon_sym_BANG_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(485), + [anon_sym_QMARK_QMARK] = ACTIONS(485), + [anon_sym_instanceof] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(368), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(542), - [anon_sym_get] = ACTIONS(542), - [anon_sym_set] = ACTIONS(542), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), }, - [72] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(540), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(915), - [sym_assignment_pattern] = STATE(1075), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(915), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(915), - [sym_spread_element] = STATE(1056), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [sym_pattern] = STATE(960), - [sym_rest_pattern] = STATE(922), - [aux_sym_export_statement_repeat1] = STATE(984), - [aux_sym_array_repeat1] = STATE(1054), - [aux_sym_array_pattern_repeat1] = STATE(1053), - [sym_identifier] = ACTIONS(540), - [anon_sym_export] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_RBRACK] = ACTIONS(578), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(550), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [63] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(706), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_STAR] = ACTIONS(511), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_in] = ACTIONS(489), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(493), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(489), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_QMARK_DOT] = ACTIONS(485), + [anon_sym_new] = ACTIONS(473), + [anon_sym_QMARK] = ACTIONS(489), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_GT_GT_GT] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(489), + [anon_sym_CARET] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_PERCENT] = ACTIONS(485), + [anon_sym_STAR_STAR] = ACTIONS(485), + [anon_sym_LT_EQ] = ACTIONS(485), + [anon_sym_EQ_EQ] = ACTIONS(489), + [anon_sym_EQ_EQ_EQ] = ACTIONS(485), + [anon_sym_BANG_EQ] = ACTIONS(489), + [anon_sym_BANG_EQ_EQ] = ACTIONS(485), + [anon_sym_GT_EQ] = ACTIONS(485), + [anon_sym_QMARK_QMARK] = ACTIONS(485), + [anon_sym_instanceof] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(542), - [anon_sym_get] = ACTIONS(542), - [anon_sym_set] = ACTIONS(542), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), + }, + [64] = { + [ts_builtin_sym_end] = ACTIONS(515), + [sym_identifier] = ACTIONS(517), + [anon_sym_export] = ACTIONS(517), + [anon_sym_STAR] = ACTIONS(519), + [anon_sym_default] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(521), + [anon_sym_RBRACE] = ACTIONS(515), + [anon_sym_import] = ACTIONS(517), + [anon_sym_var] = ACTIONS(517), + [anon_sym_let] = ACTIONS(517), + [anon_sym_const] = ACTIONS(517), + [anon_sym_else] = ACTIONS(517), + [anon_sym_if] = ACTIONS(517), + [anon_sym_switch] = ACTIONS(517), + [anon_sym_for] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(517), + [anon_sym_in] = ACTIONS(519), + [anon_sym_while] = ACTIONS(517), + [anon_sym_do] = ACTIONS(517), + [anon_sym_try] = ACTIONS(517), + [anon_sym_with] = ACTIONS(517), + [anon_sym_break] = ACTIONS(517), + [anon_sym_continue] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_return] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_SEMI] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(517), + [anon_sym_EQ] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(515), + [anon_sym_LT] = ACTIONS(517), + [anon_sym_GT] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(519), + [anon_sym_class] = ACTIONS(517), + [anon_sym_async] = ACTIONS(517), + [anon_sym_function] = ACTIONS(517), + [anon_sym_QMARK_DOT] = ACTIONS(521), + [anon_sym_new] = ACTIONS(517), + [anon_sym_QMARK] = ACTIONS(519), + [anon_sym_AMP_AMP] = ACTIONS(521), + [anon_sym_PIPE_PIPE] = ACTIONS(521), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_GT_GT_GT] = ACTIONS(521), + [anon_sym_LT_LT] = ACTIONS(521), + [anon_sym_AMP] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(517), + [anon_sym_PERCENT] = ACTIONS(521), + [anon_sym_STAR_STAR] = ACTIONS(521), + [anon_sym_LT_EQ] = ACTIONS(521), + [anon_sym_EQ_EQ] = ACTIONS(519), + [anon_sym_EQ_EQ_EQ] = ACTIONS(521), + [anon_sym_BANG_EQ] = ACTIONS(519), + [anon_sym_BANG_EQ_EQ] = ACTIONS(521), + [anon_sym_GT_EQ] = ACTIONS(521), + [anon_sym_QMARK_QMARK] = ACTIONS(521), + [anon_sym_instanceof] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_TILDE] = ACTIONS(515), + [anon_sym_typeof] = ACTIONS(517), + [anon_sym_void] = ACTIONS(517), + [anon_sym_delete] = ACTIONS(517), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(515), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(515), + [sym_number] = ACTIONS(515), + [sym_this] = ACTIONS(517), + [sym_super] = ACTIONS(517), + [sym_true] = ACTIONS(517), + [sym_false] = ACTIONS(517), + [sym_null] = ACTIONS(517), + [sym_undefined] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(525), + }, + [65] = { + [ts_builtin_sym_end] = ACTIONS(527), + [sym_identifier] = ACTIONS(529), + [anon_sym_export] = ACTIONS(529), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_default] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(527), + [anon_sym_COMMA] = ACTIONS(527), + [anon_sym_RBRACE] = ACTIONS(527), + [anon_sym_import] = ACTIONS(529), + [anon_sym_var] = ACTIONS(529), + [anon_sym_let] = ACTIONS(529), + [anon_sym_const] = ACTIONS(529), + [anon_sym_else] = ACTIONS(529), + [anon_sym_if] = ACTIONS(529), + [anon_sym_switch] = ACTIONS(529), + [anon_sym_for] = ACTIONS(529), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_await] = ACTIONS(529), + [anon_sym_in] = ACTIONS(529), + [anon_sym_while] = ACTIONS(529), + [anon_sym_do] = ACTIONS(529), + [anon_sym_try] = ACTIONS(529), + [anon_sym_with] = ACTIONS(529), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(529), + [anon_sym_debugger] = ACTIONS(529), + [anon_sym_return] = ACTIONS(529), + [anon_sym_throw] = ACTIONS(529), + [anon_sym_SEMI] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LT] = ACTIONS(529), + [anon_sym_GT] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_class] = ACTIONS(529), + [anon_sym_async] = ACTIONS(529), + [anon_sym_function] = ACTIONS(529), + [anon_sym_QMARK_DOT] = ACTIONS(527), + [anon_sym_new] = ACTIONS(529), + [anon_sym_QMARK] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(527), + [anon_sym_PIPE_PIPE] = ACTIONS(527), + [anon_sym_GT_GT] = ACTIONS(529), + [anon_sym_GT_GT_GT] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(527), + [anon_sym_AMP] = ACTIONS(529), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(527), + [anon_sym_STAR_STAR] = ACTIONS(527), + [anon_sym_LT_EQ] = ACTIONS(527), + [anon_sym_EQ_EQ] = ACTIONS(529), + [anon_sym_EQ_EQ_EQ] = ACTIONS(527), + [anon_sym_BANG_EQ] = ACTIONS(529), + [anon_sym_BANG_EQ_EQ] = ACTIONS(527), + [anon_sym_GT_EQ] = ACTIONS(527), + [anon_sym_QMARK_QMARK] = ACTIONS(527), + [anon_sym_instanceof] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_DQUOTE] = ACTIONS(527), + [anon_sym_SQUOTE] = ACTIONS(527), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(527), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(529), + [sym_super] = ACTIONS(529), + [sym_true] = ACTIONS(529), + [sym_false] = ACTIONS(529), + [sym_null] = ACTIONS(529), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(527), + [anon_sym_static] = ACTIONS(529), + [anon_sym_get] = ACTIONS(529), + [anon_sym_set] = ACTIONS(529), + [sym__automatic_semicolon] = ACTIONS(527), + }, + [66] = { + [ts_builtin_sym_end] = ACTIONS(531), + [sym_identifier] = ACTIONS(533), + [anon_sym_export] = ACTIONS(533), + [anon_sym_STAR] = ACTIONS(535), + [anon_sym_default] = ACTIONS(533), + [anon_sym_LBRACE] = ACTIONS(531), + [anon_sym_COMMA] = ACTIONS(537), + [anon_sym_RBRACE] = ACTIONS(531), + [anon_sym_import] = ACTIONS(533), + [anon_sym_var] = ACTIONS(533), + [anon_sym_let] = ACTIONS(533), + [anon_sym_const] = ACTIONS(533), + [anon_sym_else] = ACTIONS(533), + [anon_sym_if] = ACTIONS(533), + [anon_sym_switch] = ACTIONS(533), + [anon_sym_for] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(531), + [anon_sym_await] = ACTIONS(533), + [anon_sym_in] = ACTIONS(535), + [anon_sym_while] = ACTIONS(533), + [anon_sym_do] = ACTIONS(533), + [anon_sym_try] = ACTIONS(533), + [anon_sym_with] = ACTIONS(533), + [anon_sym_break] = ACTIONS(533), + [anon_sym_continue] = ACTIONS(533), + [anon_sym_debugger] = ACTIONS(533), + [anon_sym_return] = ACTIONS(533), + [anon_sym_throw] = ACTIONS(533), + [anon_sym_SEMI] = ACTIONS(531), + [anon_sym_case] = ACTIONS(533), + [anon_sym_yield] = ACTIONS(533), + [anon_sym_LBRACK] = ACTIONS(531), + [anon_sym_LT] = ACTIONS(533), + [anon_sym_GT] = ACTIONS(535), + [anon_sym_SLASH] = ACTIONS(533), + [anon_sym_DOT] = ACTIONS(535), + [anon_sym_class] = ACTIONS(533), + [anon_sym_async] = ACTIONS(533), + [anon_sym_function] = ACTIONS(533), + [anon_sym_QMARK_DOT] = ACTIONS(537), + [anon_sym_new] = ACTIONS(533), + [anon_sym_QMARK] = ACTIONS(535), + [anon_sym_AMP_AMP] = ACTIONS(537), + [anon_sym_PIPE_PIPE] = ACTIONS(537), + [anon_sym_GT_GT] = ACTIONS(535), + [anon_sym_GT_GT_GT] = ACTIONS(537), + [anon_sym_LT_LT] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_PIPE] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(533), + [anon_sym_DASH] = ACTIONS(533), + [anon_sym_PERCENT] = ACTIONS(537), + [anon_sym_STAR_STAR] = ACTIONS(537), + [anon_sym_LT_EQ] = ACTIONS(537), + [anon_sym_EQ_EQ] = ACTIONS(535), + [anon_sym_EQ_EQ_EQ] = ACTIONS(537), + [anon_sym_BANG_EQ] = ACTIONS(535), + [anon_sym_BANG_EQ_EQ] = ACTIONS(537), + [anon_sym_GT_EQ] = ACTIONS(537), + [anon_sym_QMARK_QMARK] = ACTIONS(537), + [anon_sym_instanceof] = ACTIONS(535), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(533), + [anon_sym_void] = ACTIONS(533), + [anon_sym_delete] = ACTIONS(533), + [anon_sym_PLUS_PLUS] = ACTIONS(531), + [anon_sym_DASH_DASH] = ACTIONS(531), + [anon_sym_DQUOTE] = ACTIONS(531), + [anon_sym_SQUOTE] = ACTIONS(531), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(531), + [sym_number] = ACTIONS(531), + [sym_this] = ACTIONS(533), + [sym_super] = ACTIONS(533), + [sym_true] = ACTIONS(533), + [sym_false] = ACTIONS(533), + [sym_null] = ACTIONS(533), + [sym_undefined] = ACTIONS(533), + [anon_sym_AT] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_get] = ACTIONS(533), + [anon_sym_set] = ACTIONS(533), + [sym__automatic_semicolon] = ACTIONS(539), + }, + [67] = { + [ts_builtin_sym_end] = ACTIONS(541), + [sym_identifier] = ACTIONS(543), + [anon_sym_export] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(545), + [anon_sym_default] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(547), + [anon_sym_RBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(543), + [anon_sym_var] = ACTIONS(543), + [anon_sym_let] = ACTIONS(543), + [anon_sym_const] = ACTIONS(543), + [anon_sym_else] = ACTIONS(543), + [anon_sym_if] = ACTIONS(543), + [anon_sym_switch] = ACTIONS(543), + [anon_sym_for] = ACTIONS(543), + [anon_sym_LPAREN] = ACTIONS(541), + [anon_sym_await] = ACTIONS(543), + [anon_sym_in] = ACTIONS(545), + [anon_sym_while] = ACTIONS(543), + [anon_sym_do] = ACTIONS(543), + [anon_sym_try] = ACTIONS(543), + [anon_sym_with] = ACTIONS(543), + [anon_sym_break] = ACTIONS(543), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_debugger] = ACTIONS(543), + [anon_sym_return] = ACTIONS(543), + [anon_sym_throw] = ACTIONS(543), + [anon_sym_SEMI] = ACTIONS(541), + [anon_sym_case] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(543), + [anon_sym_LBRACK] = ACTIONS(541), + [anon_sym_LT] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(543), + [anon_sym_DOT] = ACTIONS(545), + [anon_sym_class] = ACTIONS(543), + [anon_sym_async] = ACTIONS(543), + [anon_sym_function] = ACTIONS(543), + [anon_sym_QMARK_DOT] = ACTIONS(547), + [anon_sym_new] = ACTIONS(543), + [anon_sym_QMARK] = ACTIONS(545), + [anon_sym_AMP_AMP] = ACTIONS(547), + [anon_sym_PIPE_PIPE] = ACTIONS(547), + [anon_sym_GT_GT] = ACTIONS(545), + [anon_sym_GT_GT_GT] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(547), + [anon_sym_AMP] = ACTIONS(545), + [anon_sym_CARET] = ACTIONS(547), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_PLUS] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(543), + [anon_sym_PERCENT] = ACTIONS(547), + [anon_sym_STAR_STAR] = ACTIONS(547), + [anon_sym_LT_EQ] = ACTIONS(547), + [anon_sym_EQ_EQ] = ACTIONS(545), + [anon_sym_EQ_EQ_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ] = ACTIONS(545), + [anon_sym_BANG_EQ_EQ] = ACTIONS(547), + [anon_sym_GT_EQ] = ACTIONS(547), + [anon_sym_QMARK_QMARK] = ACTIONS(547), + [anon_sym_instanceof] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(543), + [anon_sym_TILDE] = ACTIONS(541), + [anon_sym_typeof] = ACTIONS(543), + [anon_sym_void] = ACTIONS(543), + [anon_sym_delete] = ACTIONS(543), + [anon_sym_PLUS_PLUS] = ACTIONS(541), + [anon_sym_DASH_DASH] = ACTIONS(541), + [anon_sym_DQUOTE] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(541), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(541), + [sym_number] = ACTIONS(541), + [sym_this] = ACTIONS(543), + [sym_super] = ACTIONS(543), + [sym_true] = ACTIONS(543), + [sym_false] = ACTIONS(543), + [sym_null] = ACTIONS(543), + [sym_undefined] = ACTIONS(543), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_static] = ACTIONS(543), + [anon_sym_get] = ACTIONS(543), + [anon_sym_set] = ACTIONS(543), + [sym__automatic_semicolon] = ACTIONS(549), + }, + [68] = { + [ts_builtin_sym_end] = ACTIONS(551), + [sym_identifier] = ACTIONS(553), + [anon_sym_export] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(555), + [anon_sym_default] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_RBRACE] = ACTIONS(551), + [anon_sym_import] = ACTIONS(553), + [anon_sym_var] = ACTIONS(553), + [anon_sym_let] = ACTIONS(553), + [anon_sym_const] = ACTIONS(553), + [anon_sym_else] = ACTIONS(553), + [anon_sym_if] = ACTIONS(553), + [anon_sym_switch] = ACTIONS(553), + [anon_sym_for] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(551), + [anon_sym_await] = ACTIONS(553), + [anon_sym_in] = ACTIONS(555), + [anon_sym_while] = ACTIONS(553), + [anon_sym_do] = ACTIONS(553), + [anon_sym_try] = ACTIONS(553), + [anon_sym_with] = ACTIONS(553), + [anon_sym_break] = ACTIONS(553), + [anon_sym_continue] = ACTIONS(553), + [anon_sym_debugger] = ACTIONS(553), + [anon_sym_return] = ACTIONS(553), + [anon_sym_throw] = ACTIONS(553), + [anon_sym_SEMI] = ACTIONS(551), + [anon_sym_case] = ACTIONS(553), + [anon_sym_yield] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_LT] = ACTIONS(553), + [anon_sym_GT] = ACTIONS(555), + [anon_sym_SLASH] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(555), + [anon_sym_class] = ACTIONS(553), + [anon_sym_async] = ACTIONS(553), + [anon_sym_function] = ACTIONS(553), + [anon_sym_QMARK_DOT] = ACTIONS(557), + [anon_sym_new] = ACTIONS(553), + [anon_sym_QMARK] = ACTIONS(555), + [anon_sym_AMP_AMP] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(555), + [anon_sym_GT_GT_GT] = ACTIONS(557), + [anon_sym_LT_LT] = ACTIONS(557), + [anon_sym_AMP] = ACTIONS(555), + [anon_sym_CARET] = ACTIONS(557), + [anon_sym_PIPE] = ACTIONS(555), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_PERCENT] = ACTIONS(557), + [anon_sym_STAR_STAR] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(557), + [anon_sym_EQ_EQ] = ACTIONS(555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(557), + [anon_sym_QMARK_QMARK] = ACTIONS(557), + [anon_sym_instanceof] = ACTIONS(555), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_TILDE] = ACTIONS(551), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(551), + [anon_sym_DASH_DASH] = ACTIONS(551), + [anon_sym_DQUOTE] = ACTIONS(551), + [anon_sym_SQUOTE] = ACTIONS(551), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(551), + [sym_number] = ACTIONS(551), + [sym_this] = ACTIONS(553), + [sym_super] = ACTIONS(553), + [sym_true] = ACTIONS(553), + [sym_false] = ACTIONS(553), + [sym_null] = ACTIONS(553), + [sym_undefined] = ACTIONS(553), + [anon_sym_AT] = ACTIONS(551), + [anon_sym_static] = ACTIONS(553), + [anon_sym_get] = ACTIONS(553), + [anon_sym_set] = ACTIONS(553), + [sym__automatic_semicolon] = ACTIONS(559), + }, + [69] = { + [ts_builtin_sym_end] = ACTIONS(561), + [sym_identifier] = ACTIONS(563), + [anon_sym_export] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(563), + [anon_sym_default] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_import] = ACTIONS(563), + [anon_sym_var] = ACTIONS(563), + [anon_sym_let] = ACTIONS(563), + [anon_sym_const] = ACTIONS(563), + [anon_sym_else] = ACTIONS(563), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(563), + [anon_sym_for] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_await] = ACTIONS(563), + [anon_sym_in] = ACTIONS(563), + [anon_sym_while] = ACTIONS(563), + [anon_sym_do] = ACTIONS(563), + [anon_sym_try] = ACTIONS(563), + [anon_sym_with] = ACTIONS(563), + [anon_sym_break] = ACTIONS(563), + [anon_sym_continue] = ACTIONS(563), + [anon_sym_debugger] = ACTIONS(563), + [anon_sym_return] = ACTIONS(563), + [anon_sym_throw] = ACTIONS(563), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_case] = ACTIONS(563), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_class] = ACTIONS(563), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(561), + [anon_sym_new] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(561), + [anon_sym_PIPE_PIPE] = ACTIONS(561), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(561), + [anon_sym_LT_LT] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_STAR_STAR] = ACTIONS(561), + [anon_sym_LT_EQ] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(561), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(561), + [anon_sym_GT_EQ] = ACTIONS(561), + [anon_sym_QMARK_QMARK] = ACTIONS(561), + [anon_sym_instanceof] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(563), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_typeof] = ACTIONS(563), + [anon_sym_void] = ACTIONS(563), + [anon_sym_delete] = ACTIONS(563), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(561), + [anon_sym_SQUOTE] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(561), + [sym_number] = ACTIONS(561), + [sym_this] = ACTIONS(563), + [sym_super] = ACTIONS(563), + [sym_true] = ACTIONS(563), + [sym_false] = ACTIONS(563), + [sym_null] = ACTIONS(563), + [sym_undefined] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_static] = ACTIONS(563), + [anon_sym_get] = ACTIONS(563), + [anon_sym_set] = ACTIONS(563), + [sym__automatic_semicolon] = ACTIONS(561), + }, + [70] = { + [ts_builtin_sym_end] = ACTIONS(515), + [sym_identifier] = ACTIONS(517), + [anon_sym_export] = ACTIONS(517), + [anon_sym_STAR] = ACTIONS(517), + [anon_sym_default] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(515), + [anon_sym_RBRACE] = ACTIONS(515), + [anon_sym_import] = ACTIONS(517), + [anon_sym_var] = ACTIONS(517), + [anon_sym_let] = ACTIONS(517), + [anon_sym_const] = ACTIONS(517), + [anon_sym_else] = ACTIONS(517), + [anon_sym_if] = ACTIONS(517), + [anon_sym_switch] = ACTIONS(517), + [anon_sym_for] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(517), + [anon_sym_in] = ACTIONS(517), + [anon_sym_while] = ACTIONS(517), + [anon_sym_do] = ACTIONS(517), + [anon_sym_try] = ACTIONS(517), + [anon_sym_with] = ACTIONS(517), + [anon_sym_break] = ACTIONS(517), + [anon_sym_continue] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_return] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_SEMI] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(515), + [anon_sym_LT] = ACTIONS(517), + [anon_sym_GT] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(517), + [anon_sym_class] = ACTIONS(517), + [anon_sym_async] = ACTIONS(517), + [anon_sym_function] = ACTIONS(517), + [anon_sym_QMARK_DOT] = ACTIONS(515), + [anon_sym_new] = ACTIONS(517), + [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_AMP_AMP] = ACTIONS(515), + [anon_sym_PIPE_PIPE] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(517), + [anon_sym_GT_GT_GT] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(515), + [anon_sym_AMP] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(517), + [anon_sym_PERCENT] = ACTIONS(515), + [anon_sym_STAR_STAR] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(515), + [anon_sym_EQ_EQ] = ACTIONS(517), + [anon_sym_EQ_EQ_EQ] = ACTIONS(515), + [anon_sym_BANG_EQ] = ACTIONS(517), + [anon_sym_BANG_EQ_EQ] = ACTIONS(515), + [anon_sym_GT_EQ] = ACTIONS(515), + [anon_sym_QMARK_QMARK] = ACTIONS(515), + [anon_sym_instanceof] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_TILDE] = ACTIONS(515), + [anon_sym_typeof] = ACTIONS(517), + [anon_sym_void] = ACTIONS(517), + [anon_sym_delete] = ACTIONS(517), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(515), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(515), + [sym_number] = ACTIONS(515), + [sym_this] = ACTIONS(517), + [sym_super] = ACTIONS(517), + [sym_true] = ACTIONS(517), + [sym_false] = ACTIONS(517), + [sym_null] = ACTIONS(517), + [sym_undefined] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(565), + }, + [71] = { + [ts_builtin_sym_end] = ACTIONS(567), + [sym_identifier] = ACTIONS(569), + [anon_sym_export] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_default] = ACTIONS(569), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(567), + [anon_sym_import] = ACTIONS(569), + [anon_sym_var] = ACTIONS(569), + [anon_sym_let] = ACTIONS(569), + [anon_sym_const] = ACTIONS(569), + [anon_sym_else] = ACTIONS(569), + [anon_sym_if] = ACTIONS(569), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_for] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(567), + [anon_sym_await] = ACTIONS(569), + [anon_sym_in] = ACTIONS(569), + [anon_sym_while] = ACTIONS(569), + [anon_sym_do] = ACTIONS(569), + [anon_sym_try] = ACTIONS(569), + [anon_sym_with] = ACTIONS(569), + [anon_sym_break] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(569), + [anon_sym_debugger] = ACTIONS(569), + [anon_sym_return] = ACTIONS(569), + [anon_sym_throw] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_case] = ACTIONS(569), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(569), + [anon_sym_GT] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(569), + [anon_sym_DOT] = ACTIONS(569), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(569), + [anon_sym_function] = ACTIONS(569), + [anon_sym_QMARK_DOT] = ACTIONS(567), + [anon_sym_new] = ACTIONS(569), + [anon_sym_QMARK] = ACTIONS(569), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(569), + [anon_sym_GT_GT_GT] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(569), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(569), + [anon_sym_PLUS] = ACTIONS(569), + [anon_sym_DASH] = ACTIONS(569), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_STAR_STAR] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(569), + [anon_sym_BANG_EQ_EQ] = ACTIONS(567), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_QMARK_QMARK] = ACTIONS(567), + [anon_sym_instanceof] = ACTIONS(569), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(567), + [anon_sym_typeof] = ACTIONS(569), + [anon_sym_void] = ACTIONS(569), + [anon_sym_delete] = ACTIONS(569), + [anon_sym_PLUS_PLUS] = ACTIONS(567), + [anon_sym_DASH_DASH] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(567), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(567), + [sym_number] = ACTIONS(567), + [sym_this] = ACTIONS(569), + [sym_super] = ACTIONS(569), + [sym_true] = ACTIONS(569), + [sym_false] = ACTIONS(569), + [sym_null] = ACTIONS(569), + [sym_undefined] = ACTIONS(569), + [anon_sym_AT] = ACTIONS(567), + [anon_sym_static] = ACTIONS(569), + [anon_sym_get] = ACTIONS(569), + [anon_sym_set] = ACTIONS(569), + [sym__automatic_semicolon] = ACTIONS(567), + }, + [72] = { + [ts_builtin_sym_end] = ACTIONS(571), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(575), + [anon_sym_default] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_COMMA] = ACTIONS(577), + [anon_sym_RBRACE] = ACTIONS(571), + [anon_sym_import] = ACTIONS(573), + [anon_sym_var] = ACTIONS(573), + [anon_sym_let] = ACTIONS(573), + [anon_sym_const] = ACTIONS(573), + [anon_sym_else] = ACTIONS(573), + [anon_sym_if] = ACTIONS(573), + [anon_sym_switch] = ACTIONS(573), + [anon_sym_for] = ACTIONS(573), + [anon_sym_LPAREN] = ACTIONS(571), + [anon_sym_await] = ACTIONS(573), + [anon_sym_in] = ACTIONS(575), + [anon_sym_while] = ACTIONS(573), + [anon_sym_do] = ACTIONS(573), + [anon_sym_try] = ACTIONS(573), + [anon_sym_with] = ACTIONS(573), + [anon_sym_break] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(573), + [anon_sym_debugger] = ACTIONS(573), + [anon_sym_return] = ACTIONS(573), + [anon_sym_throw] = ACTIONS(573), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_case] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(575), + [anon_sym_class] = ACTIONS(573), + [anon_sym_async] = ACTIONS(573), + [anon_sym_function] = ACTIONS(573), + [anon_sym_QMARK_DOT] = ACTIONS(577), + [anon_sym_new] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(575), + [anon_sym_AMP_AMP] = ACTIONS(577), + [anon_sym_PIPE_PIPE] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(575), + [anon_sym_GT_GT_GT] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_STAR_STAR] = ACTIONS(577), + [anon_sym_LT_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(577), + [anon_sym_BANG_EQ] = ACTIONS(575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(577), + [anon_sym_QMARK_QMARK] = ACTIONS(577), + [anon_sym_instanceof] = ACTIONS(575), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(571), + [anon_sym_typeof] = ACTIONS(573), + [anon_sym_void] = ACTIONS(573), + [anon_sym_delete] = ACTIONS(573), + [anon_sym_PLUS_PLUS] = ACTIONS(571), + [anon_sym_DASH_DASH] = ACTIONS(571), + [anon_sym_DQUOTE] = ACTIONS(571), + [anon_sym_SQUOTE] = ACTIONS(571), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(571), + [sym_number] = ACTIONS(571), + [sym_this] = ACTIONS(573), + [sym_super] = ACTIONS(573), + [sym_true] = ACTIONS(573), + [sym_false] = ACTIONS(573), + [sym_null] = ACTIONS(573), + [sym_undefined] = ACTIONS(573), + [anon_sym_AT] = ACTIONS(571), + [anon_sym_static] = ACTIONS(573), + [anon_sym_get] = ACTIONS(573), + [anon_sym_set] = ACTIONS(573), + [sym__automatic_semicolon] = ACTIONS(579), }, [73] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(537), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(915), - [sym_assignment_pattern] = STATE(1075), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(915), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(915), - [sym_spread_element] = STATE(1058), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [sym_pattern] = STATE(960), - [sym_rest_pattern] = STATE(922), - [aux_sym_export_statement_repeat1] = STATE(984), - [aux_sym_array_repeat1] = STATE(1060), - [aux_sym_array_pattern_repeat1] = STATE(1053), - [sym_identifier] = ACTIONS(540), - [anon_sym_export] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_RBRACK] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(550), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [ts_builtin_sym_end] = ACTIONS(581), + [sym_identifier] = ACTIONS(583), + [anon_sym_export] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(583), + [anon_sym_default] = ACTIONS(583), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(581), + [anon_sym_import] = ACTIONS(583), + [anon_sym_var] = ACTIONS(583), + [anon_sym_let] = ACTIONS(583), + [anon_sym_const] = ACTIONS(583), + [anon_sym_else] = ACTIONS(583), + [anon_sym_if] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(583), + [anon_sym_for] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(581), + [anon_sym_await] = ACTIONS(583), + [anon_sym_in] = ACTIONS(583), + [anon_sym_while] = ACTIONS(583), + [anon_sym_do] = ACTIONS(583), + [anon_sym_try] = ACTIONS(583), + [anon_sym_with] = ACTIONS(583), + [anon_sym_break] = ACTIONS(583), + [anon_sym_continue] = ACTIONS(583), + [anon_sym_debugger] = ACTIONS(583), + [anon_sym_return] = ACTIONS(583), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_case] = ACTIONS(583), + [anon_sym_yield] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(583), + [anon_sym_GT] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_DOT] = ACTIONS(583), + [anon_sym_class] = ACTIONS(583), + [anon_sym_async] = ACTIONS(583), + [anon_sym_function] = ACTIONS(583), + [anon_sym_QMARK_DOT] = ACTIONS(581), + [anon_sym_new] = ACTIONS(583), + [anon_sym_QMARK] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(583), + [anon_sym_GT_GT_GT] = ACTIONS(581), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_STAR_STAR] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(581), + [anon_sym_EQ_EQ] = ACTIONS(583), + [anon_sym_EQ_EQ_EQ] = ACTIONS(581), + [anon_sym_BANG_EQ] = ACTIONS(583), + [anon_sym_BANG_EQ_EQ] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(581), + [anon_sym_QMARK_QMARK] = ACTIONS(581), + [anon_sym_instanceof] = ACTIONS(583), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(581), + [anon_sym_DASH_DASH] = ACTIONS(581), + [anon_sym_DQUOTE] = ACTIONS(581), + [anon_sym_SQUOTE] = ACTIONS(581), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(542), - [anon_sym_get] = ACTIONS(542), - [anon_sym_set] = ACTIONS(542), + [anon_sym_BQUOTE] = ACTIONS(581), + [sym_number] = ACTIONS(581), + [sym_this] = ACTIONS(583), + [sym_super] = ACTIONS(583), + [sym_true] = ACTIONS(583), + [sym_false] = ACTIONS(583), + [sym_null] = ACTIONS(583), + [sym_undefined] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(581), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [sym__automatic_semicolon] = ACTIONS(581), }, [74] = { - [sym_declaration] = STATE(277), - [sym_import] = STATE(575), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(640), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_class_declaration] = STATE(276), - [sym_function] = STATE(575), - [sym_function_declaration] = STATE(276), - [sym_generator_function] = STATE(575), - [sym_generator_function_declaration] = STATE(276), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(976), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(320), - [anon_sym_async] = ACTIONS(556), - [anon_sym_function] = ACTIONS(324), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), + [ts_builtin_sym_end] = ACTIONS(585), + [sym_identifier] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(589), + [anon_sym_default] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(591), + [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_import] = ACTIONS(587), + [anon_sym_var] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_const] = ACTIONS(587), + [anon_sym_else] = ACTIONS(587), + [anon_sym_if] = ACTIONS(587), + [anon_sym_switch] = ACTIONS(587), + [anon_sym_for] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(585), + [anon_sym_await] = ACTIONS(587), + [anon_sym_in] = ACTIONS(589), + [anon_sym_while] = ACTIONS(587), + [anon_sym_do] = ACTIONS(587), + [anon_sym_try] = ACTIONS(587), + [anon_sym_with] = ACTIONS(587), + [anon_sym_break] = ACTIONS(587), + [anon_sym_continue] = ACTIONS(587), + [anon_sym_debugger] = ACTIONS(587), + [anon_sym_return] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_case] = ACTIONS(587), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_SLASH] = ACTIONS(587), + [anon_sym_DOT] = ACTIONS(589), + [anon_sym_class] = ACTIONS(587), + [anon_sym_async] = ACTIONS(587), + [anon_sym_function] = ACTIONS(587), + [anon_sym_QMARK_DOT] = ACTIONS(591), + [anon_sym_new] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(591), + [anon_sym_PIPE_PIPE] = ACTIONS(591), + [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_GT_GT_GT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(591), + [anon_sym_AMP] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(591), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(587), + [anon_sym_PERCENT] = ACTIONS(591), + [anon_sym_STAR_STAR] = ACTIONS(591), + [anon_sym_LT_EQ] = ACTIONS(591), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_EQ_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(589), + [anon_sym_BANG_EQ_EQ] = ACTIONS(591), + [anon_sym_GT_EQ] = ACTIONS(591), + [anon_sym_QMARK_QMARK] = ACTIONS(591), + [anon_sym_instanceof] = ACTIONS(589), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_typeof] = ACTIONS(587), + [anon_sym_void] = ACTIONS(587), + [anon_sym_delete] = ACTIONS(587), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(585), + [anon_sym_SQUOTE] = ACTIONS(585), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_BQUOTE] = ACTIONS(585), + [sym_number] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(587), + [sym_true] = ACTIONS(587), + [sym_false] = ACTIONS(587), + [sym_null] = ACTIONS(587), + [sym_undefined] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(585), + [anon_sym_static] = ACTIONS(587), + [anon_sym_get] = ACTIONS(587), + [anon_sym_set] = ACTIONS(587), + [sym__automatic_semicolon] = ACTIONS(593), }, [75] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(647), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(915), - [sym_assignment_pattern] = STATE(1075), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(915), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(915), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [sym_pattern] = STATE(960), - [sym_rest_pattern] = STATE(922), - [aux_sym_export_statement_repeat1] = STATE(984), - [aux_sym_array_pattern_repeat1] = STATE(1053), - [sym_identifier] = ACTIONS(584), - [anon_sym_export] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(588), - [anon_sym_COMMA] = ACTIONS(590), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(592), - [anon_sym_RBRACK] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(596), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [ts_builtin_sym_end] = ACTIONS(595), + [sym_identifier] = ACTIONS(597), + [anon_sym_export] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_default] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_import] = ACTIONS(597), + [anon_sym_var] = ACTIONS(597), + [anon_sym_let] = ACTIONS(597), + [anon_sym_const] = ACTIONS(597), + [anon_sym_else] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_await] = ACTIONS(597), + [anon_sym_in] = ACTIONS(599), + [anon_sym_while] = ACTIONS(597), + [anon_sym_do] = ACTIONS(597), + [anon_sym_try] = ACTIONS(597), + [anon_sym_with] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_debugger] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_throw] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_case] = ACTIONS(597), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(597), + [anon_sym_function] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_new] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(599), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(599), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_STAR_STAR] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_EQ_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_QMARK_QMARK] = ACTIONS(601), + [anon_sym_instanceof] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(597), + [anon_sym_void] = ACTIONS(597), + [anon_sym_delete] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_SQUOTE] = ACTIONS(595), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(586), - [anon_sym_get] = ACTIONS(586), - [anon_sym_set] = ACTIONS(586), + [anon_sym_BQUOTE] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [sym_this] = ACTIONS(597), + [sym_super] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_null] = ACTIONS(597), + [sym_undefined] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(595), + [anon_sym_static] = ACTIONS(597), + [anon_sym_get] = ACTIONS(597), + [anon_sym_set] = ACTIONS(597), + [sym__automatic_semicolon] = ACTIONS(603), }, [76] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(516), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(915), - [sym_assignment_pattern] = STATE(1128), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(915), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(915), - [sym_spread_element] = STATE(1091), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [sym_pattern] = STATE(1092), - [sym_rest_pattern] = STATE(922), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(540), - [anon_sym_export] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(600), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(550), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [ts_builtin_sym_end] = ACTIONS(527), + [sym_identifier] = ACTIONS(529), + [anon_sym_export] = ACTIONS(529), + [anon_sym_STAR] = ACTIONS(529), + [anon_sym_default] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(527), + [anon_sym_COMMA] = ACTIONS(527), + [anon_sym_RBRACE] = ACTIONS(527), + [anon_sym_import] = ACTIONS(529), + [anon_sym_var] = ACTIONS(529), + [anon_sym_let] = ACTIONS(529), + [anon_sym_const] = ACTIONS(529), + [anon_sym_else] = ACTIONS(529), + [anon_sym_if] = ACTIONS(529), + [anon_sym_switch] = ACTIONS(529), + [anon_sym_for] = ACTIONS(529), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_await] = ACTIONS(529), + [anon_sym_in] = ACTIONS(529), + [anon_sym_while] = ACTIONS(529), + [anon_sym_do] = ACTIONS(529), + [anon_sym_try] = ACTIONS(529), + [anon_sym_with] = ACTIONS(529), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(529), + [anon_sym_debugger] = ACTIONS(529), + [anon_sym_return] = ACTIONS(529), + [anon_sym_throw] = ACTIONS(529), + [anon_sym_SEMI] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LT] = ACTIONS(529), + [anon_sym_GT] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_DOT] = ACTIONS(529), + [anon_sym_class] = ACTIONS(529), + [anon_sym_async] = ACTIONS(529), + [anon_sym_function] = ACTIONS(529), + [anon_sym_QMARK_DOT] = ACTIONS(527), + [anon_sym_new] = ACTIONS(529), + [anon_sym_QMARK] = ACTIONS(529), + [anon_sym_AMP_AMP] = ACTIONS(527), + [anon_sym_PIPE_PIPE] = ACTIONS(527), + [anon_sym_GT_GT] = ACTIONS(529), + [anon_sym_GT_GT_GT] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(527), + [anon_sym_AMP] = ACTIONS(529), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_PIPE] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_PERCENT] = ACTIONS(527), + [anon_sym_STAR_STAR] = ACTIONS(527), + [anon_sym_LT_EQ] = ACTIONS(527), + [anon_sym_EQ_EQ] = ACTIONS(529), + [anon_sym_EQ_EQ_EQ] = ACTIONS(527), + [anon_sym_BANG_EQ] = ACTIONS(529), + [anon_sym_BANG_EQ_EQ] = ACTIONS(527), + [anon_sym_GT_EQ] = ACTIONS(527), + [anon_sym_QMARK_QMARK] = ACTIONS(527), + [anon_sym_instanceof] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(529), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_DQUOTE] = ACTIONS(527), + [anon_sym_SQUOTE] = ACTIONS(527), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(542), - [anon_sym_get] = ACTIONS(542), - [anon_sym_set] = ACTIONS(542), + [anon_sym_BQUOTE] = ACTIONS(527), + [sym_number] = ACTIONS(527), + [sym_this] = ACTIONS(529), + [sym_super] = ACTIONS(529), + [sym_true] = ACTIONS(529), + [sym_false] = ACTIONS(529), + [sym_null] = ACTIONS(529), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(527), + [anon_sym_static] = ACTIONS(529), + [anon_sym_get] = ACTIONS(529), + [anon_sym_set] = ACTIONS(529), + [sym__automatic_semicolon] = ACTIONS(605), }, [77] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(613), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(915), - [sym_assignment_pattern] = STATE(1086), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(915), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(915), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_sequence_expression] = STATE(1363), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [sym_pattern] = STATE(936), - [sym_rest_pattern] = STATE(922), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(540), - [anon_sym_export] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(603), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(550), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [ts_builtin_sym_end] = ACTIONS(607), + [sym_identifier] = ACTIONS(609), + [anon_sym_export] = ACTIONS(609), + [anon_sym_STAR] = ACTIONS(611), + [anon_sym_default] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_import] = ACTIONS(609), + [anon_sym_var] = ACTIONS(609), + [anon_sym_let] = ACTIONS(609), + [anon_sym_const] = ACTIONS(609), + [anon_sym_else] = ACTIONS(609), + [anon_sym_if] = ACTIONS(609), + [anon_sym_switch] = ACTIONS(609), + [anon_sym_for] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(607), + [anon_sym_await] = ACTIONS(609), + [anon_sym_in] = ACTIONS(611), + [anon_sym_while] = ACTIONS(609), + [anon_sym_do] = ACTIONS(609), + [anon_sym_try] = ACTIONS(609), + [anon_sym_with] = ACTIONS(609), + [anon_sym_break] = ACTIONS(609), + [anon_sym_continue] = ACTIONS(609), + [anon_sym_debugger] = ACTIONS(609), + [anon_sym_return] = ACTIONS(609), + [anon_sym_throw] = ACTIONS(609), + [anon_sym_SEMI] = ACTIONS(607), + [anon_sym_case] = ACTIONS(609), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_SLASH] = ACTIONS(609), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_class] = ACTIONS(609), + [anon_sym_async] = ACTIONS(609), + [anon_sym_function] = ACTIONS(609), + [anon_sym_QMARK_DOT] = ACTIONS(613), + [anon_sym_new] = ACTIONS(609), + [anon_sym_QMARK] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(613), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(611), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_STAR_STAR] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_EQ_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ_EQ] = ACTIONS(613), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_QMARK_QMARK] = ACTIONS(613), + [anon_sym_instanceof] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(607), + [anon_sym_typeof] = ACTIONS(609), + [anon_sym_void] = ACTIONS(609), + [anon_sym_delete] = ACTIONS(609), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(607), + [anon_sym_SQUOTE] = ACTIONS(607), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(542), - [anon_sym_get] = ACTIONS(542), - [anon_sym_set] = ACTIONS(542), + [anon_sym_BQUOTE] = ACTIONS(607), + [sym_number] = ACTIONS(607), + [sym_this] = ACTIONS(609), + [sym_super] = ACTIONS(609), + [sym_true] = ACTIONS(609), + [sym_false] = ACTIONS(609), + [sym_null] = ACTIONS(609), + [sym_undefined] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_static] = ACTIONS(609), + [anon_sym_get] = ACTIONS(609), + [anon_sym_set] = ACTIONS(609), + [sym__automatic_semicolon] = ACTIONS(615), }, [78] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(627), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(915), - [sym_assignment_pattern] = STATE(1086), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(915), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(915), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_sequence_expression] = STATE(1335), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [sym_pattern] = STATE(936), - [sym_rest_pattern] = STATE(922), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(540), - [anon_sym_export] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(603), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(550), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [ts_builtin_sym_end] = ACTIONS(617), + [sym_identifier] = ACTIONS(619), + [anon_sym_export] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_default] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_import] = ACTIONS(619), + [anon_sym_var] = ACTIONS(619), + [anon_sym_let] = ACTIONS(619), + [anon_sym_const] = ACTIONS(619), + [anon_sym_else] = ACTIONS(619), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(619), + [anon_sym_for] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_await] = ACTIONS(619), + [anon_sym_in] = ACTIONS(621), + [anon_sym_while] = ACTIONS(619), + [anon_sym_do] = ACTIONS(619), + [anon_sym_try] = ACTIONS(619), + [anon_sym_with] = ACTIONS(619), + [anon_sym_break] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(619), + [anon_sym_debugger] = ACTIONS(619), + [anon_sym_return] = ACTIONS(619), + [anon_sym_throw] = ACTIONS(619), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_case] = ACTIONS(619), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_class] = ACTIONS(619), + [anon_sym_async] = ACTIONS(619), + [anon_sym_function] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(623), + [anon_sym_new] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_STAR_STAR] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_QMARK_QMARK] = ACTIONS(623), + [anon_sym_instanceof] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(619), + [anon_sym_void] = ACTIONS(619), + [anon_sym_delete] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_DQUOTE] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(617), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(542), - [anon_sym_get] = ACTIONS(542), - [anon_sym_set] = ACTIONS(542), + [anon_sym_BQUOTE] = ACTIONS(617), + [sym_number] = ACTIONS(617), + [sym_this] = ACTIONS(619), + [sym_super] = ACTIONS(619), + [sym_true] = ACTIONS(619), + [sym_false] = ACTIONS(619), + [sym_null] = ACTIONS(619), + [sym_undefined] = ACTIONS(619), + [anon_sym_AT] = ACTIONS(617), + [anon_sym_static] = ACTIONS(619), + [anon_sym_get] = ACTIONS(619), + [anon_sym_set] = ACTIONS(619), + [sym__automatic_semicolon] = ACTIONS(625), }, [79] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(516), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_spread_element] = STATE(1091), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_COMMA] = ACTIONS(605), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(605), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_RBRACK] = ACTIONS(605), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(607), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(583), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(987), + [sym_assignment_pattern] = STATE(1099), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(987), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(987), + [sym_spread_element] = STATE(1068), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [sym_pattern] = STATE(1018), + [sym_rest_pattern] = STATE(983), + [aux_sym_export_statement_repeat1] = STATE(1014), + [aux_sym_array_repeat1] = STATE(1070), + [aux_sym_array_pattern_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(633), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(635), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(639), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), }, [80] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(524), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_spread_element] = STATE(1101), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [aux_sym_array_repeat1] = STATE(1100), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(611), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(607), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(583), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(987), + [sym_assignment_pattern] = STATE(1099), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(987), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(987), + [sym_spread_element] = STATE(1068), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [sym_pattern] = STATE(1018), + [sym_rest_pattern] = STATE(983), + [aux_sym_export_statement_repeat1] = STATE(1014), + [aux_sym_array_repeat1] = STATE(1070), + [aux_sym_array_pattern_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(633), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(643), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(639), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), }, [81] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(538), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_spread_element] = STATE(1080), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [aux_sym_array_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_COMMA] = ACTIONS(609), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(607), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), - }, - [82] = { - [sym_import] = STATE(575), - [sym_expression_statement] = STATE(92), - [sym_empty_statement] = STATE(92), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [sym_import] = STATE(645), + [sym_expression_statement] = STATE(101), + [sym_variable_declaration] = STATE(101), + [sym_lexical_declaration] = STATE(101), + [sym_empty_statement] = STATE(101), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1126), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1126), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1126), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(645), + [anon_sym_export] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(649), + [anon_sym_import] = ACTIONS(159), + [anon_sym_var] = ACTIONS(651), + [anon_sym_let] = ACTIONS(653), + [anon_sym_const] = ACTIONS(653), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(655), [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(659), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -14496,148 +15096,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), - }, - [83] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(589), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_spread_element] = STATE(1380), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_sequence_expression] = STATE(1380), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(607), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [sym_undefined] = ACTIONS(661), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(647), + [anon_sym_get] = ACTIONS(647), + [anon_sym_set] = ACTIONS(647), }, - [84] = { - [sym_import] = STATE(575), - [sym_expression_statement] = STATE(90), - [sym_empty_statement] = STATE(90), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1257), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [82] = { + [sym_declaration] = STATE(313), + [sym_import] = STATE(645), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(620), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1017), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), + [anon_sym_var] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_const] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(49), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(449), + [anon_sym_async] = ACTIONS(663), + [anon_sym_function] = ACTIONS(453), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -14660,225 +15184,328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [85] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(616), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(915), - [sym_assignment_pattern] = STATE(1200), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(915), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(915), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [sym_pattern] = STATE(1006), - [sym_rest_pattern] = STATE(922), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(540), - [anon_sym_export] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(550), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(598), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [83] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(583), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(987), + [sym_assignment_pattern] = STATE(1099), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(987), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(987), + [sym_spread_element] = STATE(1068), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [sym_pattern] = STATE(1018), + [sym_rest_pattern] = STATE(983), + [aux_sym_export_statement_repeat1] = STATE(1014), + [aux_sym_array_repeat1] = STATE(1070), + [aux_sym_array_pattern_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(633), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(665), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(639), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(542), - [anon_sym_get] = ACTIONS(542), - [anon_sym_set] = ACTIONS(542), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), }, - [86] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(576), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_spread_element] = STATE(1282), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_sequence_expression] = STATE(1282), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(607), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [84] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(583), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(987), + [sym_assignment_pattern] = STATE(1099), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(987), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(987), + [sym_spread_element] = STATE(1068), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [sym_pattern] = STATE(1018), + [sym_rest_pattern] = STATE(983), + [aux_sym_export_statement_repeat1] = STATE(1014), + [aux_sym_array_repeat1] = STATE(1070), + [aux_sym_array_pattern_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(633), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(639), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), }, - [87] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(532), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1148), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [85] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(563), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(987), + [sym_assignment_pattern] = STATE(1099), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(987), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(987), + [sym_spread_element] = STATE(1100), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [sym_pattern] = STATE(1018), + [sym_rest_pattern] = STATE(983), + [aux_sym_export_statement_repeat1] = STATE(1014), + [aux_sym_array_repeat1] = STATE(1102), + [aux_sym_array_pattern_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(633), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(639), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), + }, + [86] = { + [sym_declaration] = STATE(374), + [sym_import] = STATE(645), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(646), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1017), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), + [anon_sym_var] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_const] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(449), + [anon_sym_async] = ACTIONS(663), + [anon_sym_function] = ACTIONS(453), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -14901,772 +15528,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), - [sym__automatic_semicolon] = ACTIONS(619), - }, - [88] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(388), - [sym_expression] = STATE(655), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1072), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1072), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(388), - [sym_subscript_expression] = STATE(388), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1072), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(621), - [anon_sym_export] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_import] = ACTIONS(338), - [anon_sym_var] = ACTIONS(627), - [anon_sym_let] = ACTIONS(627), - [anon_sym_const] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(623), - [anon_sym_get] = ACTIONS(623), - [anon_sym_set] = ACTIONS(623), - }, - [89] = { - [sym_export_clause] = STATE(941), - [sym_declaration] = STATE(278), - [sym_namespace_import] = STATE(1203), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_class_declaration] = STATE(276), - [sym_function_declaration] = STATE(276), - [sym_generator_function_declaration] = STATE(276), - [sym_decorator] = STATE(766), - [aux_sym_export_statement_repeat1] = STATE(955), - [aux_sym_object_repeat1] = STATE(1082), - [aux_sym_object_pattern_repeat1] = STATE(1026), - [anon_sym_STAR] = ACTIONS(635), - [anon_sym_default] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(643), - [anon_sym_var] = ACTIONS(645), - [anon_sym_let] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_in] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(641), - [anon_sym_class] = ACTIONS(659), - [anon_sym_async] = ACTIONS(661), - [anon_sym_function] = ACTIONS(663), - [anon_sym_EQ_GT] = ACTIONS(665), - [anon_sym_QMARK_DOT] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [anon_sym_DASH_EQ] = ACTIONS(667), - [anon_sym_STAR_EQ] = ACTIONS(667), - [anon_sym_SLASH_EQ] = ACTIONS(667), - [anon_sym_PERCENT_EQ] = ACTIONS(667), - [anon_sym_CARET_EQ] = ACTIONS(667), - [anon_sym_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_EQ] = ACTIONS(667), - [anon_sym_GT_GT_EQ] = ACTIONS(667), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(667), - [anon_sym_LT_LT_EQ] = ACTIONS(667), - [anon_sym_STAR_STAR_EQ] = ACTIONS(667), - [anon_sym_AMP_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(667), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(641), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(641), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(641), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_instanceof] = ACTIONS(641), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_DASH_DASH] = ACTIONS(641), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(641), - [anon_sym_AT] = ACTIONS(87), - [sym__automatic_semicolon] = ACTIONS(641), - }, - [90] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(634), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_sequence_expression] = STATE(1322), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(669), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), - }, - [91] = { - [sym_export_clause] = STATE(941), - [sym_declaration] = STATE(278), - [sym_namespace_import] = STATE(1203), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_class_declaration] = STATE(276), - [sym_function_declaration] = STATE(276), - [sym_generator_function_declaration] = STATE(276), - [sym_decorator] = STATE(766), - [aux_sym_export_statement_repeat1] = STATE(955), - [aux_sym_object_repeat1] = STATE(1082), - [aux_sym_object_pattern_repeat1] = STATE(1026), - [anon_sym_STAR] = ACTIONS(635), - [anon_sym_default] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(671), - [anon_sym_var] = ACTIONS(645), - [anon_sym_let] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_in] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(641), - [anon_sym_class] = ACTIONS(659), - [anon_sym_async] = ACTIONS(661), - [anon_sym_function] = ACTIONS(663), - [anon_sym_EQ_GT] = ACTIONS(665), - [anon_sym_QMARK_DOT] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [anon_sym_DASH_EQ] = ACTIONS(667), - [anon_sym_STAR_EQ] = ACTIONS(667), - [anon_sym_SLASH_EQ] = ACTIONS(667), - [anon_sym_PERCENT_EQ] = ACTIONS(667), - [anon_sym_CARET_EQ] = ACTIONS(667), - [anon_sym_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_EQ] = ACTIONS(667), - [anon_sym_GT_GT_EQ] = ACTIONS(667), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(667), - [anon_sym_LT_LT_EQ] = ACTIONS(667), - [anon_sym_STAR_STAR_EQ] = ACTIONS(667), - [anon_sym_AMP_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(667), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(641), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(641), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(641), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_instanceof] = ACTIONS(641), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_DASH_DASH] = ACTIONS(641), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(641), - [anon_sym_AT] = ACTIONS(87), - [sym__automatic_semicolon] = ACTIONS(641), - }, - [92] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(548), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_sequence_expression] = STATE(1307), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(673), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), - }, - [93] = { - [sym_export_clause] = STATE(941), - [sym_declaration] = STATE(278), - [sym_namespace_import] = STATE(1203), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_class_declaration] = STATE(276), - [sym_function_declaration] = STATE(276), - [sym_generator_function_declaration] = STATE(276), - [sym_decorator] = STATE(766), - [aux_sym_export_statement_repeat1] = STATE(955), - [aux_sym_object_repeat1] = STATE(1025), - [aux_sym_object_pattern_repeat1] = STATE(1026), - [anon_sym_STAR] = ACTIONS(635), - [anon_sym_default] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(675), - [anon_sym_var] = ACTIONS(645), - [anon_sym_let] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_in] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(641), - [anon_sym_class] = ACTIONS(659), - [anon_sym_async] = ACTIONS(661), - [anon_sym_function] = ACTIONS(663), - [anon_sym_EQ_GT] = ACTIONS(665), - [anon_sym_QMARK_DOT] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [anon_sym_DASH_EQ] = ACTIONS(667), - [anon_sym_STAR_EQ] = ACTIONS(667), - [anon_sym_SLASH_EQ] = ACTIONS(667), - [anon_sym_PERCENT_EQ] = ACTIONS(667), - [anon_sym_CARET_EQ] = ACTIONS(667), - [anon_sym_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_EQ] = ACTIONS(667), - [anon_sym_GT_GT_EQ] = ACTIONS(667), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(667), - [anon_sym_LT_LT_EQ] = ACTIONS(667), - [anon_sym_STAR_STAR_EQ] = ACTIONS(667), - [anon_sym_AMP_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(667), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(641), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(641), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(641), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_instanceof] = ACTIONS(641), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_DASH_DASH] = ACTIONS(641), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(641), - [anon_sym_AT] = ACTIONS(87), - [sym__automatic_semicolon] = ACTIONS(641), - }, - [94] = { - [sym_import] = STATE(492), - [sym_statement_block] = STATE(470), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(595), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - }, - [95] = { - [sym_import] = STATE(492), - [sym_statement_block] = STATE(470), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(396), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(679), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [96] = { - [sym_import] = STATE(492), - [sym_statement_block] = STATE(428), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(596), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [87] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(568), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(987), + [sym_assignment_pattern] = STATE(1099), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(987), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(987), + [sym_spread_element] = STATE(1100), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [sym_pattern] = STATE(1018), + [sym_rest_pattern] = STATE(983), + [aux_sym_export_statement_repeat1] = STATE(1014), + [aux_sym_array_repeat1] = STATE(1102), + [aux_sym_array_pattern_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(633), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(639), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), }, - [97] = { - [sym_import] = STATE(575), - [sym_statement_block] = STATE(623), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(503), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_import] = ACTIONS(390), + [88] = { + [sym_import] = STATE(645), + [sym_expression_statement] = STATE(99), + [sym_variable_declaration] = STATE(99), + [sym_lexical_declaration] = STATE(99), + [sym_empty_statement] = STATE(99), + [sym_parenthesized_expression] = STATE(411), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1126), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1126), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(411), + [sym_subscript_expression] = STATE(411), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1126), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(645), + [anon_sym_export] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(649), + [anon_sym_import] = ACTIONS(159), + [anon_sym_var] = ACTIONS(651), + [anon_sym_let] = ACTIONS(653), + [anon_sym_const] = ACTIONS(653), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(655), + [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(659), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -15687,64 +15698,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), + [sym_undefined] = ACTIONS(661), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(647), + [anon_sym_get] = ACTIONS(647), + [anon_sym_set] = ACTIONS(647), }, - [98] = { - [sym_import] = STATE(575), - [sym_statement_block] = STATE(617), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(432), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_import] = ACTIONS(390), + [89] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(568), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(987), + [sym_assignment_pattern] = STATE(1099), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(987), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(987), + [sym_spread_element] = STATE(1100), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [sym_pattern] = STATE(1018), + [sym_rest_pattern] = STATE(983), + [aux_sym_export_statement_repeat1] = STATE(1014), + [aux_sym_array_repeat1] = STATE(1102), + [aux_sym_array_pattern_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(633), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(639), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), + }, + [90] = { + [sym_declaration] = STATE(374), + [sym_import] = STATE(645), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(646), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(997), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), + [anon_sym_var] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_const] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(673), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -15767,62 +15872,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [99] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(541), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1157), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [91] = { + [sym_declaration] = STATE(313), + [sym_import] = STATE(645), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(620), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_class_declaration] = STATE(360), + [sym_function] = STATE(645), + [sym_function_declaration] = STATE(360), + [sym_generator_function] = STATE(645), + [sym_generator_function_declaration] = STATE(360), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(997), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), + [anon_sym_var] = ACTIONS(17), + [anon_sym_let] = ACTIONS(19), + [anon_sym_const] = ACTIONS(19), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(673), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -15845,140 +15958,645 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [100] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(552), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_sequence_expression] = STATE(1358), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [92] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(705), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(987), + [sym_assignment_pattern] = STATE(1099), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(987), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(987), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [sym_pattern] = STATE(1018), + [sym_rest_pattern] = STATE(983), + [aux_sym_export_statement_repeat1] = STATE(1014), + [aux_sym_array_pattern_repeat1] = STATE(1103), + [sym_identifier] = ACTIONS(675), + [anon_sym_export] = ACTIONS(677), + [anon_sym_LBRACE] = ACTIONS(679), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(683), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(685), + [anon_sym_RBRACK] = ACTIONS(687), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(689), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(677), + [anon_sym_get] = ACTIONS(677), + [anon_sym_set] = ACTIONS(677), }, - [101] = { - [sym_import] = STATE(575), - [sym_statement_block] = STATE(570), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(436), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_import] = ACTIONS(390), + [93] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(589), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(987), + [sym_assignment_pattern] = STATE(1323), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(987), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(987), + [sym_spread_element] = STATE(1131), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [sym_pattern] = STATE(1132), + [sym_rest_pattern] = STATE(983), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(693), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(633), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_RBRACK] = ACTIONS(693), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(639), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), + }, + [94] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(607), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(987), + [sym_assignment_pattern] = STATE(1098), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(987), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(987), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_sequence_expression] = STATE(1437), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [sym_pattern] = STATE(1007), + [sym_rest_pattern] = STATE(983), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_RPAREN] = ACTIONS(696), + [anon_sym_await] = ACTIONS(633), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(639), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), + }, + [95] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(591), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(987), + [sym_assignment_pattern] = STATE(1098), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(987), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(987), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_sequence_expression] = STATE(1412), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [sym_pattern] = STATE(1007), + [sym_rest_pattern] = STATE(983), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_RPAREN] = ACTIONS(696), + [anon_sym_await] = ACTIONS(633), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(639), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), + }, + [96] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(589), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_spread_element] = STATE(1131), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(698), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_RPAREN] = ACTIONS(698), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_RBRACK] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [97] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(584), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_spread_element] = STATE(1114), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [aux_sym_array_repeat1] = STATE(1115), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(702), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_RPAREN] = ACTIONS(704), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [98] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_spread_element] = STATE(1140), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [aux_sym_array_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(702), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_RPAREN] = ACTIONS(706), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [99] = { + [sym_import] = STATE(645), + [sym_expression_statement] = STATE(107), + [sym_empty_statement] = STATE(107), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), + [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -16001,374 +16619,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), - }, - [102] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(624), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_sequence_expression] = STATE(1316), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), - }, - [103] = { - [sym_import] = STATE(492), - [sym_statement_block] = STATE(487), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(419), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(679), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), - }, - [104] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(655), - [sym_primary_expression] = STATE(399), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_DOT] = ACTIONS(683), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [105] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(416), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_sequence_expression] = STATE(953), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [100] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(599), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_spread_element] = STATE(1385), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_sequence_expression] = STATE(1385), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_RBRACE] = ACTIONS(708), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, - [106] = { - [sym_import] = STATE(575), - [sym_statement_block] = STATE(603), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(460), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_import] = ACTIONS(390), + [101] = { + [sym_import] = STATE(645), + [sym_expression_statement] = STATE(106), + [sym_empty_statement] = STATE(106), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1220), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), + [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -16391,62 +16781,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [107] = { - [sym_import] = STATE(575), - [sym_statement_block] = STATE(621), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(424), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_import] = ACTIONS(390), + [102] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(987), + [sym_assignment_pattern] = STATE(1266), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(987), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(987), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [sym_pattern] = STATE(1149), + [sym_rest_pattern] = STATE(983), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(633), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(639), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(691), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), + }, + [103] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(659), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_spread_element] = STATE(1392), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_sequence_expression] = STATE(1392), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_RBRACE] = ACTIONS(710), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [104] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(433), + [sym_expression] = STATE(719), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1092), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1092), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(433), + [sym_subscript_expression] = STATE(433), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1092), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(712), + [anon_sym_export] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(716), + [anon_sym_import] = ACTIONS(318), + [anon_sym_var] = ACTIONS(718), + [anon_sym_let] = ACTIONS(718), + [anon_sym_const] = ACTIONS(718), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(722), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(724), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(726), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(714), + [anon_sym_get] = ACTIONS(714), + [anon_sym_set] = ACTIONS(714), + }, + [105] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(573), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1252), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), + [anon_sym_SEMI] = ACTIONS(728), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -16469,530 +17102,926 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), + [sym__automatic_semicolon] = ACTIONS(728), + }, + [106] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(618), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_sequence_expression] = STATE(1387), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [107] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(644), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_sequence_expression] = STATE(1402), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [108] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(578), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_sequence_expression] = STATE(1357), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_export_clause] = STATE(1024), + [sym_declaration] = STATE(318), + [sym_namespace_import] = STATE(1223), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_class_declaration] = STATE(360), + [sym_function_declaration] = STATE(360), + [sym_generator_function_declaration] = STATE(360), + [sym_decorator] = STATE(836), + [aux_sym_export_statement_repeat1] = STATE(1023), + [aux_sym_object_repeat1] = STATE(1060), + [aux_sym_object_pattern_repeat1] = STATE(1118), + [anon_sym_STAR] = ACTIONS(734), + [anon_sym_default] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(183), + [anon_sym_var] = ACTIONS(740), + [anon_sym_let] = ACTIONS(742), + [anon_sym_const] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(155), + [anon_sym_class] = ACTIONS(744), + [anon_sym_async] = ACTIONS(746), + [anon_sym_function] = ACTIONS(748), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(155), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [sym__automatic_semicolon] = ACTIONS(155), }, [109] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(565), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_sequence_expression] = STATE(1302), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_export_clause] = STATE(1024), + [sym_declaration] = STATE(318), + [sym_namespace_import] = STATE(1223), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_class_declaration] = STATE(360), + [sym_function_declaration] = STATE(360), + [sym_generator_function_declaration] = STATE(360), + [sym_decorator] = STATE(836), + [aux_sym_export_statement_repeat1] = STATE(1023), + [aux_sym_object_repeat1] = STATE(1060), + [aux_sym_object_pattern_repeat1] = STATE(1118), + [anon_sym_STAR] = ACTIONS(734), + [anon_sym_default] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(181), + [anon_sym_var] = ACTIONS(740), + [anon_sym_let] = ACTIONS(742), + [anon_sym_const] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(155), + [anon_sym_class] = ACTIONS(744), + [anon_sym_async] = ACTIONS(746), + [anon_sym_function] = ACTIONS(748), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(155), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [sym__automatic_semicolon] = ACTIONS(155), }, [110] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(633), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_sequence_expression] = STATE(1328), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_export_clause] = STATE(1024), + [sym_declaration] = STATE(318), + [sym_namespace_import] = STATE(1223), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_class_declaration] = STATE(360), + [sym_function_declaration] = STATE(360), + [sym_generator_function_declaration] = STATE(360), + [sym_decorator] = STATE(836), + [aux_sym_export_statement_repeat1] = STATE(1023), + [aux_sym_object_repeat1] = STATE(1117), + [aux_sym_object_pattern_repeat1] = STATE(1118), + [anon_sym_STAR] = ACTIONS(734), + [anon_sym_default] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_var] = ACTIONS(740), + [anon_sym_let] = ACTIONS(742), + [anon_sym_const] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(155), + [anon_sym_class] = ACTIONS(744), + [anon_sym_async] = ACTIONS(746), + [anon_sym_function] = ACTIONS(748), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(155), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [sym__automatic_semicolon] = ACTIONS(155), }, [111] = { - [sym_import] = STATE(492), - [sym_statement_block] = STATE(427), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(598), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_statement_block] = STATE(547), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(699), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), }, [112] = { - [sym_import] = STATE(492), - [sym_statement_block] = STATE(500), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(568), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(605), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_sequence_expression] = STATE(1380), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [113] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(613), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_sequence_expression] = STATE(1363), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(591), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_sequence_expression] = STATE(1412), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [114] = { - [sym_import] = STATE(575), - [sym_statement_block] = STATE(547), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(505), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_import] = ACTIONS(390), + [sym_import] = STATE(494), + [sym_statement_block] = STATE(537), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(702), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + }, + [115] = { + [sym_import] = STATE(494), + [sym_statement_block] = STATE(508), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(667), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + }, + [116] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(593), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_sequence_expression] = STATE(1358), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [117] = { + [sym_import] = STATE(645), + [sym_statement_block] = STATE(633), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(476), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -17015,998 +18044,686 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), - }, - [115] = { - [sym_import] = STATE(492), - [sym_statement_block] = STATE(487), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(581), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - }, - [116] = { - [sym_import] = STATE(492), - [sym_statement_block] = STATE(483), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - }, - [117] = { - [sym_import] = STATE(492), - [sym_statement_block] = STATE(500), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(412), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(679), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, [118] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(372), - [sym_expression] = STATE(653), - [sym_primary_expression] = STATE(522), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(372), - [sym_subscript_expression] = STATE(372), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(685), - [anon_sym_export] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_DOT] = ACTIONS(689), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(691), - [anon_sym_function] = ACTIONS(398), - [anon_sym_new] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), + [sym_import] = STATE(494), + [sym_statement_block] = STATE(538), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(445), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(695), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(687), - [anon_sym_get] = ACTIONS(687), - [anon_sym_set] = ACTIONS(687), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [119] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(599), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_sequence_expression] = STATE(1312), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(647), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_sequence_expression] = STATE(1369), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [120] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(655), - [sym_primary_expression] = STATE(399), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(697), - [anon_sym_export] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_DOT] = ACTIONS(683), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(640), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_sequence_expression] = STATE(1350), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(699), - [anon_sym_get] = ACTIONS(699), - [anon_sym_set] = ACTIONS(699), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [121] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(636), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_sequence_expression] = STATE(1362), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_statement_block] = STATE(506), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(691), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), }, [122] = { - [sym_import] = STATE(492), - [sym_statement_block] = STATE(428), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(421), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(679), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_statement_block] = STATE(506), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(465), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [123] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(546), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_sequence_expression] = STATE(1304), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_statement_block] = STATE(508), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(686), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), }, [124] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(655), - [sym_primary_expression] = STATE(399), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_DOT] = ACTIONS(689), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_statement_block] = STATE(538), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(682), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), }, [125] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(612), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_sequence_expression] = STATE(1367), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(656), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_sequence_expression] = STATE(1453), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [126] = { - [sym_import] = STATE(492), - [sym_statement_block] = STATE(427), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(406), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(679), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), - }, - [127] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(533), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_sequence_expression] = STATE(1159), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [sym_import] = STATE(645), + [sym_statement_block] = STATE(619), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(529), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -18029,217 +18746,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), - }, - [128] = { - [sym_import] = STATE(492), - [sym_statement_block] = STATE(483), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(398), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(679), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), - }, - [129] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(556), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_sequence_expression] = STATE(1305), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [130] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(431), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [127] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(586), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1288), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -18262,61 +18824,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [131] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(441), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [128] = { + [sym_import] = STATE(494), + [sym_statement_block] = STATE(538), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(672), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + }, + [129] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(458), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_sequence_expression] = STATE(1009), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [130] = { + [sym_import] = STATE(645), + [sym_statement_block] = STATE(622), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(487), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -18339,138 +19058,530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), + }, + [131] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(648), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_sequence_expression] = STATE(1404), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [132] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(646), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(596), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_sequence_expression] = STATE(1363), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [133] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(494), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(626), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_sequence_expression] = STATE(1388), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [134] = { + [sym_import] = STATE(494), + [sym_statement_block] = STATE(547), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(685), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), + }, + [135] = { + [sym_import] = STATE(494), + [sym_statement_block] = STATE(537), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(689), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), + }, + [136] = { + [sym_import] = STATE(494), + [sym_statement_block] = STATE(525), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(692), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), + }, + [137] = { + [sym_import] = STATE(645), + [sym_statement_block] = STATE(631), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(558), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -18493,71 +19604,930 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [134] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(499), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [138] = { + [sym_import] = STATE(494), + [sym_statement_block] = STATE(508), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(467), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [139] = { + [sym_import] = STATE(494), + [sym_statement_block] = STATE(525), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(680), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + }, + [140] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(719), + [sym_primary_expression] = STATE(442), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(756), + [anon_sym_export] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(762), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(758), + [anon_sym_get] = ACTIONS(758), + [anon_sym_set] = ACTIONS(758), + }, + [141] = { + [sym_import] = STATE(494), + [sym_statement_block] = STATE(525), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(455), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [142] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(637), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_sequence_expression] = STATE(1442), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [143] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(719), + [sym_primary_expression] = STATE(442), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + }, + [144] = { + [sym_import] = STATE(494), + [sym_statement_block] = STATE(537), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(468), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [145] = { + [sym_import] = STATE(494), + [sym_statement_block] = STATE(506), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(675), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), + }, + [146] = { + [sym_import] = STATE(494), + [sym_statement_block] = STATE(547), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(443), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [147] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(650), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_sequence_expression] = STATE(1454), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [148] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(719), + [sym_primary_expression] = STATE(442), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(768), + [anon_sym_export] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(762), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(774), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(770), + [anon_sym_get] = ACTIONS(770), + [anon_sym_set] = ACTIONS(770), + }, + [149] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(415), + [sym_expression] = STATE(718), + [sym_primary_expression] = STATE(571), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(415), + [sym_subscript_expression] = STATE(415), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(776), + [anon_sym_export] = ACTIONS(778), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), + [anon_sym_await] = ACTIONS(780), + [anon_sym_yield] = ACTIONS(360), [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(637), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(782), + [anon_sym_function] = ACTIONS(175), + [anon_sym_new] = ACTIONS(784), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [anon_sym_DQUOTE] = ACTIONS(75), [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), @@ -18568,140 +20538,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(778), + [anon_sym_get] = ACTIONS(778), + [anon_sym_set] = ACTIONS(778), }, - [135] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(647), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [150] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(719), + [sym_primary_expression] = STATE(442), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(762), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), }, - [136] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(472), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [151] = { + [sym_import] = STATE(645), + [sym_statement_block] = STATE(627), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(548), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -18724,61 +20696,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [137] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(485), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [152] = { + [sym_import] = STATE(645), + [sym_statement_block] = STATE(625), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(546), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -18801,292 +20774,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), - }, - [138] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(644), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), - }, - [139] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(393), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - }, - [140] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(392), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [141] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(475), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [153] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(570), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_sequence_expression] = STATE(1254), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -19109,215 +20852,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), - }, - [142] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(390), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [143] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(562), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [154] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(437), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), }, - [144] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(520), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [155] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(507), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -19340,831 +21006,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [145] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(577), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - }, - [146] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(446), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), - }, - [147] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(580), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - }, - [148] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(582), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - }, - [149] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(584), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - }, - [150] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(404), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), - }, - [151] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(585), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - }, - [152] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(586), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - }, - [153] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(588), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - }, - [154] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(642), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [156] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(542), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1096), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1096), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1096), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(788), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, - [155] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(489), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [157] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(516), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -20187,292 +21160,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [156] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(590), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), - }, - [157] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(446), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1078), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1078), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1078), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(703), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [158] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(707), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), }, - [158] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(649), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [159] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(709), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), }, - [159] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(490), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [160] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(501), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -20495,215 +21391,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), - }, - [160] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(394), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, [161] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(593), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(711), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), }, [162] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(495), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(492), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -20726,523 +21545,754 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, [163] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(594), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(531), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_await] = ACTIONS(164), + [anon_sym_yield] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(55), + [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, [164] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(606), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(542), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [165] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(602), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(490), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_await] = ACTIONS(164), + [anon_sym_yield] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(55), + [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, [166] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(405), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(462), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [167] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(513), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(678), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), }, [168] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(410), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(482), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [169] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(465), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(715), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), + }, + [170] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [171] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(439), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [172] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(534), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -21265,1139 +22315,985 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), - }, - [170] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(393), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), - }, - [171] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(397), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), - }, - [172] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(392), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, [173] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(390), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(542), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1129), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1129), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1129), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(790), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [174] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(631), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [175] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(394), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(592), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [176] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(414), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(566), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_await] = ACTIONS(164), + [anon_sym_yield] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(55), + [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, [177] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(401), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(448), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [178] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(694), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), }, [179] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(446), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1041), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1041), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1041), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(705), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(669), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), }, [180] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(402), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(449), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [181] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(407), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(440), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [182] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(411), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(435), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, [183] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(413), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(676), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), }, [184] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(458), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(435), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), + }, + [185] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(553), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -22420,215 +23316,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [185] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(417), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [186] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(437), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, - [186] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(508), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), + [187] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(684), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), }, - [187] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(434), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [188] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(444), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [189] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(693), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), + }, + [190] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(486), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -22651,215 +23701,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [188] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(616), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [191] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(696), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), }, - [189] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(420), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [192] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(435), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), }, - [190] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(451), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [193] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(522), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -22882,61 +23932,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [191] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(450), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [194] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(704), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), + }, + [195] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(543), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -22959,61 +24086,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [192] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(444), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [196] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(708), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), + }, + [197] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(710), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), + }, + [198] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(677), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + }, + [199] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(470), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -23036,61 +24394,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [193] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(449), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [200] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(530), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -23113,215 +24471,831 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [194] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(361), - [sym_expression] = STATE(422), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1343), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1343), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(757), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1343), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1303), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(328), - [anon_sym_export] = ACTIONS(330), - [anon_sym_LBRACE] = ACTIONS(334), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(342), - [anon_sym_yield] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(348), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(356), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(360), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(364), - [anon_sym_typeof] = ACTIONS(366), - [anon_sym_void] = ACTIONS(366), - [anon_sym_delete] = ACTIONS(366), - [anon_sym_PLUS_PLUS] = ACTIONS(368), - [anon_sym_DASH_DASH] = ACTIONS(368), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [201] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(519), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_await] = ACTIONS(164), + [anon_sym_yield] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(55), + [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(330), - [anon_sym_get] = ACTIONS(330), - [anon_sym_set] = ACTIONS(330), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [195] = { - [sym_import] = STATE(492), - [sym_parenthesized_expression] = STATE(348), - [sym_expression] = STATE(648), - [sym_primary_expression] = STATE(498), - [sym_yield_expression] = STATE(501), - [sym_object] = STATE(492), - [sym_object_pattern] = STATE(1311), - [sym_array] = STATE(492), - [sym_array_pattern] = STATE(1311), - [sym_jsx_element] = STATE(501), - [sym_jsx_fragment] = STATE(501), - [sym_jsx_opening_element] = STATE(782), - [sym_jsx_self_closing_element] = STATE(501), - [sym_class] = STATE(492), - [sym_function] = STATE(492), - [sym_generator_function] = STATE(492), - [sym_arrow_function] = STATE(492), - [sym_call_expression] = STATE(492), - [sym_new_expression] = STATE(501), - [sym_await_expression] = STATE(501), - [sym_member_expression] = STATE(348), - [sym_subscript_expression] = STATE(348), - [sym_assignment_expression] = STATE(501), - [sym__augmented_assignment_lhs] = STATE(756), - [sym_augmented_assignment_expression] = STATE(501), - [sym__destructuring_pattern] = STATE(1311), - [sym_ternary_expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_update_expression] = STATE(501), - [sym_string] = STATE(492), - [sym_template_string] = STATE(492), - [sym_regex] = STATE(492), - [sym_meta_property] = STATE(492), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1342), - [aux_sym_export_statement_repeat1] = STATE(984), - [sym_identifier] = ACTIONS(400), - [anon_sym_export] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_import] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_await] = ACTIONS(408), - [anon_sym_yield] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_class] = ACTIONS(354), - [anon_sym_async] = ACTIONS(414), - [anon_sym_function] = ACTIONS(358), - [anon_sym_new] = ACTIONS(416), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_typeof] = ACTIONS(422), - [anon_sym_void] = ACTIONS(422), - [anon_sym_delete] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [202] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(527), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_await] = ACTIONS(164), + [anon_sym_yield] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(55), + [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(374), - [sym_number] = ACTIONS(376), - [sym_this] = ACTIONS(378), - [sym_super] = ACTIONS(378), - [sym_true] = ACTIONS(378), - [sym_false] = ACTIONS(378), - [sym_null] = ACTIONS(378), - [sym_undefined] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(402), - [anon_sym_get] = ACTIONS(402), - [anon_sym_set] = ACTIONS(402), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [196] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), + [203] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(526), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_await] = ACTIONS(164), + [anon_sym_yield] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(55), + [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), + }, + [204] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(461), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [205] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(439), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + }, + [206] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(439), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), + }, + [207] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(668), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + }, + [208] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(436), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), + }, + [209] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(437), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), + }, + [210] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), [sym_expression] = STATE(447), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [211] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(474), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -23344,61 +25318,831 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [197] = { - [sym_import] = STATE(575), - [sym_parenthesized_expression] = STATE(376), - [sym_expression] = STATE(448), - [sym_primary_expression] = STATE(574), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(575), - [sym_object_pattern] = STATE(1288), - [sym_array] = STATE(575), - [sym_array_pattern] = STATE(1288), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(794), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(575), - [sym_function] = STATE(575), - [sym_generator_function] = STATE(575), - [sym_arrow_function] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_assignment_expression] = STATE(569), - [sym__augmented_assignment_lhs] = STATE(760), - [sym_augmented_assignment_expression] = STATE(569), - [sym__destructuring_pattern] = STATE(1288), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(575), - [sym_template_string] = STATE(575), - [sym_regex] = STATE(575), - [sym_meta_property] = STATE(575), - [sym_decorator] = STATE(766), - [sym_formal_parameters] = STATE(1308), - [aux_sym_export_statement_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(382), - [anon_sym_export] = ACTIONS(384), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_import] = ACTIONS(390), + [212] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(670), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + }, + [213] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(671), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + }, + [214] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(436), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + }, + [215] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(690), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), + }, + [216] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(666), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + }, + [217] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(450), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [218] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(463), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [219] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(673), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + }, + [220] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(712), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), + }, + [221] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(695), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + }, + [222] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(505), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), + [anon_sym_await] = ACTIONS(164), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(394), - [anon_sym_async] = ACTIONS(396), - [anon_sym_function] = ACTIONS(398), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -23421,958 +26165,2102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(85), [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(384), - [anon_sym_get] = ACTIONS(384), - [anon_sym_set] = ACTIONS(384), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [198] = { - [sym_export_clause] = STATE(941), - [sym_declaration] = STATE(278), - [sym_namespace_import] = STATE(1203), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_class_declaration] = STATE(276), - [sym_function_declaration] = STATE(276), - [sym_generator_function_declaration] = STATE(276), - [sym_decorator] = STATE(766), - [aux_sym_export_statement_repeat1] = STATE(955), - [anon_sym_STAR] = ACTIONS(635), - [anon_sym_default] = ACTIONS(637), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_var] = ACTIONS(645), - [anon_sym_let] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(641), - [anon_sym_in] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_COLON] = ACTIONS(707), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(641), - [anon_sym_class] = ACTIONS(659), - [anon_sym_async] = ACTIONS(661), - [anon_sym_function] = ACTIONS(663), - [anon_sym_EQ_GT] = ACTIONS(665), - [anon_sym_QMARK_DOT] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [anon_sym_DASH_EQ] = ACTIONS(667), - [anon_sym_STAR_EQ] = ACTIONS(667), - [anon_sym_SLASH_EQ] = ACTIONS(667), - [anon_sym_PERCENT_EQ] = ACTIONS(667), - [anon_sym_CARET_EQ] = ACTIONS(667), - [anon_sym_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_EQ] = ACTIONS(667), - [anon_sym_GT_GT_EQ] = ACTIONS(667), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(667), - [anon_sym_LT_LT_EQ] = ACTIONS(667), - [anon_sym_STAR_STAR_EQ] = ACTIONS(667), - [anon_sym_AMP_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(667), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(641), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(641), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(641), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_instanceof] = ACTIONS(641), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_DASH_DASH] = ACTIONS(641), + [223] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(452), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), [anon_sym_AT] = ACTIONS(87), - [sym__automatic_semicolon] = ACTIONS(641), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, - [199] = { - [sym_export_clause] = STATE(941), - [sym_declaration] = STATE(278), - [sym_namespace_import] = STATE(1203), - [sym_variable_declaration] = STATE(276), - [sym_lexical_declaration] = STATE(276), - [sym_class_declaration] = STATE(276), - [sym_function_declaration] = STATE(276), - [sym_generator_function_declaration] = STATE(276), - [sym_decorator] = STATE(766), - [aux_sym_export_statement_repeat1] = STATE(954), - [anon_sym_STAR] = ACTIONS(635), - [anon_sym_default] = ACTIONS(711), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_var] = ACTIONS(645), - [anon_sym_let] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(641), - [anon_sym_in] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_COLON] = ACTIONS(713), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_LBRACK] = ACTIONS(641), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(641), - [anon_sym_class] = ACTIONS(715), - [anon_sym_async] = ACTIONS(717), - [anon_sym_function] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(665), - [anon_sym_QMARK_DOT] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [anon_sym_DASH_EQ] = ACTIONS(667), - [anon_sym_STAR_EQ] = ACTIONS(667), - [anon_sym_SLASH_EQ] = ACTIONS(667), - [anon_sym_PERCENT_EQ] = ACTIONS(667), - [anon_sym_CARET_EQ] = ACTIONS(667), - [anon_sym_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_EQ] = ACTIONS(667), - [anon_sym_GT_GT_EQ] = ACTIONS(667), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(667), - [anon_sym_LT_LT_EQ] = ACTIONS(667), - [anon_sym_STAR_STAR_EQ] = ACTIONS(667), - [anon_sym_AMP_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(667), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(641), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(641), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(641), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_instanceof] = ACTIONS(641), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_DASH_DASH] = ACTIONS(641), + [224] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(641), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), [anon_sym_AT] = ACTIONS(87), - [sym__automatic_semicolon] = ACTIONS(641), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), }, - [200] = { - [sym_string] = STATE(1221), - [sym_formal_parameters] = STATE(1340), - [sym__property_name] = STATE(1221), - [sym_computed_property_name] = STATE(1221), - [aux_sym_object_repeat1] = STATE(1082), - [aux_sym_object_pattern_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(721), - [anon_sym_export] = ACTIONS(723), - [anon_sym_STAR] = ACTIONS(725), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(728), - [anon_sym_in] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_async] = ACTIONS(723), - [anon_sym_function] = ACTIONS(735), - [anon_sym_EQ_GT] = ACTIONS(665), - [anon_sym_QMARK_DOT] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [anon_sym_DASH_EQ] = ACTIONS(667), - [anon_sym_STAR_EQ] = ACTIONS(667), - [anon_sym_SLASH_EQ] = ACTIONS(667), - [anon_sym_PERCENT_EQ] = ACTIONS(667), - [anon_sym_CARET_EQ] = ACTIONS(667), - [anon_sym_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_EQ] = ACTIONS(667), - [anon_sym_GT_GT_EQ] = ACTIONS(667), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(667), - [anon_sym_LT_LT_EQ] = ACTIONS(667), - [anon_sym_STAR_STAR_EQ] = ACTIONS(667), - [anon_sym_AMP_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(667), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(641), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(641), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(641), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_instanceof] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [225] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(436), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(641), - [sym_number] = ACTIONS(737), - [sym_private_property_identifier] = ACTIONS(737), - [anon_sym_static] = ACTIONS(723), - [anon_sym_get] = ACTIONS(739), - [anon_sym_set] = ACTIONS(739), - [sym__automatic_semicolon] = ACTIONS(641), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, - [201] = { - [sym_string] = STATE(1221), - [sym_formal_parameters] = STATE(1340), - [sym__property_name] = STATE(1221), - [sym_computed_property_name] = STATE(1221), - [aux_sym_object_repeat1] = STATE(1082), - [aux_sym_object_pattern_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(721), - [anon_sym_export] = ACTIONS(723), - [anon_sym_STAR] = ACTIONS(725), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(728), - [anon_sym_in] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_async] = ACTIONS(723), - [anon_sym_function] = ACTIONS(735), - [anon_sym_EQ_GT] = ACTIONS(665), - [anon_sym_QMARK_DOT] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [anon_sym_DASH_EQ] = ACTIONS(667), - [anon_sym_STAR_EQ] = ACTIONS(667), - [anon_sym_SLASH_EQ] = ACTIONS(667), - [anon_sym_PERCENT_EQ] = ACTIONS(667), - [anon_sym_CARET_EQ] = ACTIONS(667), - [anon_sym_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_EQ] = ACTIONS(667), - [anon_sym_GT_GT_EQ] = ACTIONS(667), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(667), - [anon_sym_LT_LT_EQ] = ACTIONS(667), - [anon_sym_STAR_STAR_EQ] = ACTIONS(667), - [anon_sym_AMP_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(667), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(641), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(641), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(641), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_instanceof] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [226] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(432), + [sym_expression] = STATE(698), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1395), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1395), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(432), + [sym_subscript_expression] = STATE(432), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(838), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1395), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1443), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(459), + [anon_sym_export] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(463), + [anon_sym_yield] = ACTIONS(465), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(469), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(513), + [anon_sym_DASH_DASH] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(641), - [sym_number] = ACTIONS(737), - [sym_private_property_identifier] = ACTIONS(737), - [anon_sym_static] = ACTIONS(723), - [anon_sym_get] = ACTIONS(739), - [anon_sym_set] = ACTIONS(739), - [sym__automatic_semicolon] = ACTIONS(641), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(461), + [anon_sym_get] = ACTIONS(461), + [anon_sym_set] = ACTIONS(461), }, - [202] = { - [sym_string] = STATE(1221), - [sym_formal_parameters] = STATE(1340), - [sym__property_name] = STATE(1221), - [sym_computed_property_name] = STATE(1221), - [aux_sym_object_repeat1] = STATE(1025), - [aux_sym_object_pattern_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(721), - [anon_sym_export] = ACTIONS(723), - [anon_sym_STAR] = ACTIONS(725), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(728), - [anon_sym_in] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_async] = ACTIONS(723), - [anon_sym_function] = ACTIONS(735), - [anon_sym_EQ_GT] = ACTIONS(665), - [anon_sym_QMARK_DOT] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [anon_sym_DASH_EQ] = ACTIONS(667), - [anon_sym_STAR_EQ] = ACTIONS(667), - [anon_sym_SLASH_EQ] = ACTIONS(667), - [anon_sym_PERCENT_EQ] = ACTIONS(667), - [anon_sym_CARET_EQ] = ACTIONS(667), - [anon_sym_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_EQ] = ACTIONS(667), - [anon_sym_GT_GT_EQ] = ACTIONS(667), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(667), - [anon_sym_LT_LT_EQ] = ACTIONS(667), - [anon_sym_STAR_STAR_EQ] = ACTIONS(667), - [anon_sym_AMP_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(667), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(641), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(641), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(641), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_instanceof] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [227] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(453), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(641), - [sym_number] = ACTIONS(737), - [sym_private_property_identifier] = ACTIONS(737), - [anon_sym_static] = ACTIONS(723), - [anon_sym_get] = ACTIONS(739), - [anon_sym_set] = ACTIONS(739), - [sym__automatic_semicolon] = ACTIONS(641), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, - [203] = { - [sym_string] = STATE(1221), - [sym__property_name] = STATE(1221), - [sym_computed_property_name] = STATE(1221), - [aux_sym_object_repeat1] = STATE(1025), - [aux_sym_object_pattern_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(741), - [anon_sym_export] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(725), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_in] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_async] = ACTIONS(743), - [anon_sym_EQ_GT] = ACTIONS(665), - [anon_sym_QMARK_DOT] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [anon_sym_DASH_EQ] = ACTIONS(667), - [anon_sym_STAR_EQ] = ACTIONS(667), - [anon_sym_SLASH_EQ] = ACTIONS(667), - [anon_sym_PERCENT_EQ] = ACTIONS(667), - [anon_sym_CARET_EQ] = ACTIONS(667), - [anon_sym_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_EQ] = ACTIONS(667), - [anon_sym_GT_GT_EQ] = ACTIONS(667), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(667), - [anon_sym_LT_LT_EQ] = ACTIONS(667), - [anon_sym_STAR_STAR_EQ] = ACTIONS(667), - [anon_sym_AMP_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(667), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(641), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(641), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(641), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_instanceof] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [228] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(687), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(641), - [sym_number] = ACTIONS(737), - [sym_private_property_identifier] = ACTIONS(737), - [anon_sym_static] = ACTIONS(741), - [anon_sym_get] = ACTIONS(745), - [anon_sym_set] = ACTIONS(745), - [sym__automatic_semicolon] = ACTIONS(641), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), }, - [204] = { - [sym_string] = STATE(1221), - [sym__property_name] = STATE(1221), - [sym_computed_property_name] = STATE(1221), - [aux_sym_object_repeat1] = STATE(1082), - [aux_sym_object_pattern_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(741), - [anon_sym_export] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_in] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_async] = ACTIONS(741), - [anon_sym_EQ_GT] = ACTIONS(665), - [anon_sym_QMARK_DOT] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [anon_sym_DASH_EQ] = ACTIONS(667), - [anon_sym_STAR_EQ] = ACTIONS(667), - [anon_sym_SLASH_EQ] = ACTIONS(667), - [anon_sym_PERCENT_EQ] = ACTIONS(667), - [anon_sym_CARET_EQ] = ACTIONS(667), - [anon_sym_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_EQ] = ACTIONS(667), - [anon_sym_GT_GT_EQ] = ACTIONS(667), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(667), - [anon_sym_LT_LT_EQ] = ACTIONS(667), - [anon_sym_STAR_STAR_EQ] = ACTIONS(667), - [anon_sym_AMP_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(667), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(641), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(641), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(641), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_instanceof] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [229] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(454), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(641), - [sym_number] = ACTIONS(737), - [sym_private_property_identifier] = ACTIONS(737), - [anon_sym_static] = ACTIONS(741), - [anon_sym_get] = ACTIONS(741), - [anon_sym_set] = ACTIONS(741), - [sym__automatic_semicolon] = ACTIONS(641), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, - [205] = { - [sym_string] = STATE(1221), - [sym__property_name] = STATE(1221), - [sym_computed_property_name] = STATE(1221), - [aux_sym_object_repeat1] = STATE(1082), - [aux_sym_object_pattern_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(741), - [anon_sym_export] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(725), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_in] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_async] = ACTIONS(743), - [anon_sym_EQ_GT] = ACTIONS(665), - [anon_sym_QMARK_DOT] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [anon_sym_DASH_EQ] = ACTIONS(667), - [anon_sym_STAR_EQ] = ACTIONS(667), - [anon_sym_SLASH_EQ] = ACTIONS(667), - [anon_sym_PERCENT_EQ] = ACTIONS(667), - [anon_sym_CARET_EQ] = ACTIONS(667), - [anon_sym_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_EQ] = ACTIONS(667), - [anon_sym_GT_GT_EQ] = ACTIONS(667), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(667), - [anon_sym_LT_LT_EQ] = ACTIONS(667), - [anon_sym_STAR_STAR_EQ] = ACTIONS(667), - [anon_sym_AMP_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(667), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(641), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(641), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(641), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_instanceof] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [230] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(683), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(641), - [sym_number] = ACTIONS(737), - [sym_private_property_identifier] = ACTIONS(737), - [anon_sym_static] = ACTIONS(741), - [anon_sym_get] = ACTIONS(745), - [anon_sym_set] = ACTIONS(745), - [sym__automatic_semicolon] = ACTIONS(641), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), }, - [206] = { - [sym_string] = STATE(1221), - [sym__property_name] = STATE(1221), - [sym_computed_property_name] = STATE(1221), - [aux_sym_object_repeat1] = STATE(1082), - [aux_sym_object_pattern_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(741), - [anon_sym_export] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_in] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_async] = ACTIONS(741), - [anon_sym_EQ_GT] = ACTIONS(665), - [anon_sym_QMARK_DOT] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [anon_sym_DASH_EQ] = ACTIONS(667), - [anon_sym_STAR_EQ] = ACTIONS(667), - [anon_sym_SLASH_EQ] = ACTIONS(667), - [anon_sym_PERCENT_EQ] = ACTIONS(667), - [anon_sym_CARET_EQ] = ACTIONS(667), - [anon_sym_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_EQ] = ACTIONS(667), - [anon_sym_GT_GT_EQ] = ACTIONS(667), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(667), - [anon_sym_LT_LT_EQ] = ACTIONS(667), - [anon_sym_STAR_STAR_EQ] = ACTIONS(667), - [anon_sym_AMP_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(667), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(641), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(641), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(641), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_instanceof] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [231] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(679), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(641), - [sym_number] = ACTIONS(737), - [sym_private_property_identifier] = ACTIONS(737), - [anon_sym_static] = ACTIONS(741), - [anon_sym_get] = ACTIONS(741), - [anon_sym_set] = ACTIONS(741), - [sym__automatic_semicolon] = ACTIONS(641), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), }, - [207] = { - [sym_string] = STATE(1221), - [sym__property_name] = STATE(1221), - [sym_computed_property_name] = STATE(1221), - [aux_sym_object_repeat1] = STATE(1082), - [aux_sym_object_pattern_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(741), - [anon_sym_export] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(725), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_in] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_async] = ACTIONS(743), - [anon_sym_EQ_GT] = ACTIONS(665), - [anon_sym_QMARK_DOT] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [anon_sym_DASH_EQ] = ACTIONS(667), - [anon_sym_STAR_EQ] = ACTIONS(667), - [anon_sym_SLASH_EQ] = ACTIONS(667), - [anon_sym_PERCENT_EQ] = ACTIONS(667), - [anon_sym_CARET_EQ] = ACTIONS(667), - [anon_sym_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_EQ] = ACTIONS(667), - [anon_sym_GT_GT_EQ] = ACTIONS(667), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(667), - [anon_sym_LT_LT_EQ] = ACTIONS(667), - [anon_sym_STAR_STAR_EQ] = ACTIONS(667), - [anon_sym_AMP_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(667), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(641), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(641), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(641), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_instanceof] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [232] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(387), + [sym_expression] = STATE(681), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1360), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1360), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(387), + [sym_subscript_expression] = STATE(387), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(831), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1360), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1384), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(352), + [anon_sym_export] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(507), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(364), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(368), + [anon_sym_DASH] = ACTIONS(368), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_typeof] = ACTIONS(372), + [anon_sym_void] = ACTIONS(372), + [anon_sym_delete] = ACTIONS(372), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(641), - [sym_number] = ACTIONS(737), - [sym_private_property_identifier] = ACTIONS(737), - [anon_sym_static] = ACTIONS(741), - [anon_sym_get] = ACTIONS(745), - [anon_sym_set] = ACTIONS(745), - [sym__automatic_semicolon] = ACTIONS(641), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), }, - [208] = { - [sym_string] = STATE(1221), - [sym__property_name] = STATE(1221), - [sym_computed_property_name] = STATE(1221), - [aux_sym_object_repeat1] = STATE(1025), - [aux_sym_object_pattern_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(741), - [anon_sym_export] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_in] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_DOT] = ACTIONS(652), - [anon_sym_async] = ACTIONS(741), - [anon_sym_EQ_GT] = ACTIONS(665), - [anon_sym_QMARK_DOT] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(667), - [anon_sym_DASH_EQ] = ACTIONS(667), - [anon_sym_STAR_EQ] = ACTIONS(667), - [anon_sym_SLASH_EQ] = ACTIONS(667), - [anon_sym_PERCENT_EQ] = ACTIONS(667), - [anon_sym_CARET_EQ] = ACTIONS(667), - [anon_sym_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_EQ] = ACTIONS(667), - [anon_sym_GT_GT_EQ] = ACTIONS(667), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(667), - [anon_sym_LT_LT_EQ] = ACTIONS(667), - [anon_sym_STAR_STAR_EQ] = ACTIONS(667), - [anon_sym_AMP_AMP_EQ] = ACTIONS(667), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(667), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_GT_GT_GT] = ACTIONS(652), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(641), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(641), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(641), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_instanceof] = ACTIONS(652), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_SQUOTE] = ACTIONS(372), + [233] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(705), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(641), - [sym_number] = ACTIONS(737), - [sym_private_property_identifier] = ACTIONS(737), - [anon_sym_static] = ACTIONS(741), - [anon_sym_get] = ACTIONS(741), - [anon_sym_set] = ACTIONS(741), - [sym__automatic_semicolon] = ACTIONS(641), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), }, - [209] = { - [ts_builtin_sym_end] = ACTIONS(440), - [sym_identifier] = ACTIONS(442), - [anon_sym_export] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(440), - [anon_sym_default] = ACTIONS(442), - [anon_sym_LBRACE] = ACTIONS(440), - [anon_sym_COMMA] = ACTIONS(440), - [anon_sym_RBRACE] = ACTIONS(440), - [anon_sym_import] = ACTIONS(442), - [anon_sym_var] = ACTIONS(442), - [anon_sym_let] = ACTIONS(442), - [anon_sym_const] = ACTIONS(442), - [anon_sym_else] = ACTIONS(442), - [anon_sym_if] = ACTIONS(442), - [anon_sym_switch] = ACTIONS(442), - [anon_sym_for] = ACTIONS(442), - [anon_sym_LPAREN] = ACTIONS(440), - [anon_sym_await] = ACTIONS(442), - [anon_sym_while] = ACTIONS(442), - [anon_sym_do] = ACTIONS(442), - [anon_sym_try] = ACTIONS(442), - [anon_sym_with] = ACTIONS(442), - [anon_sym_break] = ACTIONS(442), - [anon_sym_continue] = ACTIONS(442), - [anon_sym_debugger] = ACTIONS(442), - [anon_sym_return] = ACTIONS(442), - [anon_sym_throw] = ACTIONS(442), - [anon_sym_SEMI] = ACTIONS(440), - [anon_sym_case] = ACTIONS(442), - [anon_sym_catch] = ACTIONS(442), - [anon_sym_finally] = ACTIONS(442), - [anon_sym_yield] = ACTIONS(442), - [anon_sym_LBRACK] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_class] = ACTIONS(442), - [anon_sym_async] = ACTIONS(442), - [anon_sym_function] = ACTIONS(442), - [anon_sym_new] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(440), - [anon_sym_TILDE] = ACTIONS(440), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(440), - [anon_sym_DASH_DASH] = ACTIONS(440), - [anon_sym_DQUOTE] = ACTIONS(440), - [anon_sym_SQUOTE] = ACTIONS(440), + [234] = { + [sym_import] = STATE(645), + [sym_parenthesized_expression] = STATE(412), + [sym_expression] = STATE(499), + [sym_primary_expression] = STATE(600), + [sym_yield_expression] = STATE(604), + [sym_object] = STATE(645), + [sym_object_pattern] = STATE(1436), + [sym_array] = STATE(645), + [sym_array_pattern] = STATE(1436), + [sym_jsx_element] = STATE(604), + [sym_jsx_fragment] = STATE(604), + [sym_jsx_opening_element] = STATE(852), + [sym_jsx_self_closing_element] = STATE(604), + [sym_class] = STATE(645), + [sym_function] = STATE(645), + [sym_generator_function] = STATE(645), + [sym_arrow_function] = STATE(645), + [sym_call_expression] = STATE(645), + [sym_new_expression] = STATE(604), + [sym_await_expression] = STATE(604), + [sym_member_expression] = STATE(412), + [sym_subscript_expression] = STATE(412), + [sym_assignment_expression] = STATE(604), + [sym__augmented_assignment_lhs] = STATE(833), + [sym_augmented_assignment_expression] = STATE(604), + [sym__destructuring_pattern] = STATE(1436), + [sym_ternary_expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_update_expression] = STATE(604), + [sym_string] = STATE(645), + [sym_template_string] = STATE(645), + [sym_regex] = STATE(645), + [sym_meta_property] = STATE(645), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1433), + [aux_sym_export_statement_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_import] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_await] = ACTIONS(164), + [anon_sym_yield] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(55), + [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_class] = ACTIONS(171), + [anon_sym_async] = ACTIONS(173), + [anon_sym_function] = ACTIONS(175), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(73), + [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(440), - [sym_number] = ACTIONS(440), - [sym_private_property_identifier] = ACTIONS(440), - [sym_this] = ACTIONS(442), - [sym_super] = ACTIONS(442), - [sym_true] = ACTIONS(442), - [sym_false] = ACTIONS(442), - [sym_null] = ACTIONS(442), - [sym_undefined] = ACTIONS(442), - [anon_sym_AT] = ACTIONS(440), - [anon_sym_static] = ACTIONS(442), - [anon_sym_get] = ACTIONS(442), - [anon_sym_set] = ACTIONS(442), - [sym__automatic_semicolon] = ACTIONS(747), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_this] = ACTIONS(83), + [sym_super] = ACTIONS(83), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_undefined] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(149), + [anon_sym_get] = ACTIONS(149), + [anon_sym_set] = ACTIONS(149), }, - [210] = { - [ts_builtin_sym_end] = ACTIONS(428), - [sym_identifier] = ACTIONS(430), - [anon_sym_export] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(428), - [anon_sym_COMMA] = ACTIONS(428), - [anon_sym_RBRACE] = ACTIONS(428), - [anon_sym_import] = ACTIONS(430), - [anon_sym_var] = ACTIONS(430), - [anon_sym_let] = ACTIONS(430), - [anon_sym_const] = ACTIONS(430), - [anon_sym_else] = ACTIONS(430), - [anon_sym_if] = ACTIONS(430), - [anon_sym_switch] = ACTIONS(430), - [anon_sym_for] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(428), - [anon_sym_await] = ACTIONS(430), - [anon_sym_while] = ACTIONS(430), - [anon_sym_do] = ACTIONS(430), - [anon_sym_try] = ACTIONS(430), - [anon_sym_with] = ACTIONS(430), - [anon_sym_break] = ACTIONS(430), - [anon_sym_continue] = ACTIONS(430), - [anon_sym_debugger] = ACTIONS(430), - [anon_sym_return] = ACTIONS(430), - [anon_sym_throw] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(428), - [anon_sym_case] = ACTIONS(430), - [anon_sym_catch] = ACTIONS(430), - [anon_sym_finally] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(428), - [anon_sym_LT] = ACTIONS(428), - [anon_sym_SLASH] = ACTIONS(430), - [anon_sym_class] = ACTIONS(430), - [anon_sym_async] = ACTIONS(430), - [anon_sym_function] = ACTIONS(430), - [anon_sym_new] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(430), - [anon_sym_DASH] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(428), - [anon_sym_TILDE] = ACTIONS(428), - [anon_sym_typeof] = ACTIONS(430), - [anon_sym_void] = ACTIONS(430), - [anon_sym_delete] = ACTIONS(430), - [anon_sym_PLUS_PLUS] = ACTIONS(428), - [anon_sym_DASH_DASH] = ACTIONS(428), - [anon_sym_DQUOTE] = ACTIONS(428), - [anon_sym_SQUOTE] = ACTIONS(428), + [235] = { + [sym_import] = STATE(494), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(688), + [sym_primary_expression] = STATE(469), + [sym_yield_expression] = STATE(524), + [sym_object] = STATE(494), + [sym_object_pattern] = STATE(1445), + [sym_array] = STATE(494), + [sym_array_pattern] = STATE(1445), + [sym_jsx_element] = STATE(524), + [sym_jsx_fragment] = STATE(524), + [sym_jsx_opening_element] = STATE(864), + [sym_jsx_self_closing_element] = STATE(524), + [sym_class] = STATE(494), + [sym_function] = STATE(494), + [sym_generator_function] = STATE(494), + [sym_arrow_function] = STATE(494), + [sym_call_expression] = STATE(494), + [sym_new_expression] = STATE(524), + [sym_await_expression] = STATE(524), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(524), + [sym__augmented_assignment_lhs] = STATE(835), + [sym_augmented_assignment_expression] = STATE(524), + [sym__destructuring_pattern] = STATE(1445), + [sym_ternary_expression] = STATE(524), + [sym_binary_expression] = STATE(524), + [sym_unary_expression] = STATE(524), + [sym_update_expression] = STATE(524), + [sym_string] = STATE(494), + [sym_template_string] = STATE(494), + [sym_regex] = STATE(494), + [sym_meta_property] = STATE(494), + [sym_decorator] = STATE(836), + [sym_formal_parameters] = STATE(1451), + [aux_sym_export_statement_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(312), + [anon_sym_export] = ACTIONS(314), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_import] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(487), + [anon_sym_await] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(322), + [anon_sym_LBRACK] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(495), + [anon_sym_class] = ACTIONS(326), + [anon_sym_async] = ACTIONS(328), + [anon_sym_function] = ACTIONS(330), + [anon_sym_new] = ACTIONS(334), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_typeof] = ACTIONS(340), + [anon_sym_void] = ACTIONS(340), + [anon_sym_delete] = ACTIONS(340), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(499), + [sym_number] = ACTIONS(346), + [sym_this] = ACTIONS(348), + [sym_super] = ACTIONS(348), + [sym_true] = ACTIONS(348), + [sym_false] = ACTIONS(348), + [sym_null] = ACTIONS(348), + [sym_undefined] = ACTIONS(350), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_static] = ACTIONS(314), + [anon_sym_get] = ACTIONS(314), + [anon_sym_set] = ACTIONS(314), + }, + [236] = { + [sym_string] = STATE(1170), + [sym_formal_parameters] = STATE(1398), + [sym__property_name] = STATE(1170), + [sym_computed_property_name] = STATE(1170), + [aux_sym_object_repeat1] = STATE(1060), + [aux_sym_object_pattern_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(792), + [anon_sym_export] = ACTIONS(794), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(799), + [anon_sym_await] = ACTIONS(794), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(808), + [sym_private_property_identifier] = ACTIONS(808), + [anon_sym_static] = ACTIONS(794), + [anon_sym_get] = ACTIONS(810), + [anon_sym_set] = ACTIONS(810), + [sym__automatic_semicolon] = ACTIONS(155), + }, + [237] = { + [sym_export_clause] = STATE(1024), + [sym_declaration] = STATE(318), + [sym_namespace_import] = STATE(1223), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_class_declaration] = STATE(360), + [sym_function_declaration] = STATE(360), + [sym_generator_function_declaration] = STATE(360), + [sym_decorator] = STATE(836), + [aux_sym_export_statement_repeat1] = STATE(1019), + [anon_sym_STAR] = ACTIONS(734), + [anon_sym_default] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_var] = ACTIONS(740), + [anon_sym_let] = ACTIONS(742), + [anon_sym_const] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(155), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(87), + [sym__automatic_semicolon] = ACTIONS(155), + }, + [238] = { + [sym_string] = STATE(1170), + [sym_formal_parameters] = STATE(1398), + [sym__property_name] = STATE(1170), + [sym_computed_property_name] = STATE(1170), + [aux_sym_object_repeat1] = STATE(1117), + [aux_sym_object_pattern_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(792), + [anon_sym_export] = ACTIONS(794), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(799), + [anon_sym_await] = ACTIONS(794), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(808), + [sym_private_property_identifier] = ACTIONS(808), + [anon_sym_static] = ACTIONS(794), + [anon_sym_get] = ACTIONS(810), + [anon_sym_set] = ACTIONS(810), + [sym__automatic_semicolon] = ACTIONS(155), + }, + [239] = { + [sym_string] = STATE(1170), + [sym_formal_parameters] = STATE(1398), + [sym__property_name] = STATE(1170), + [sym_computed_property_name] = STATE(1170), + [aux_sym_object_repeat1] = STATE(1060), + [aux_sym_object_pattern_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(792), + [anon_sym_export] = ACTIONS(794), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(799), + [anon_sym_await] = ACTIONS(794), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(806), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(808), + [sym_private_property_identifier] = ACTIONS(808), + [anon_sym_static] = ACTIONS(794), + [anon_sym_get] = ACTIONS(810), + [anon_sym_set] = ACTIONS(810), + [sym__automatic_semicolon] = ACTIONS(155), + }, + [240] = { + [sym_export_clause] = STATE(1024), + [sym_declaration] = STATE(318), + [sym_namespace_import] = STATE(1223), + [sym_variable_declaration] = STATE(360), + [sym_lexical_declaration] = STATE(360), + [sym_class_declaration] = STATE(360), + [sym_function_declaration] = STATE(360), + [sym_generator_function_declaration] = STATE(360), + [sym_decorator] = STATE(836), + [aux_sym_export_statement_repeat1] = STATE(1023), + [anon_sym_STAR] = ACTIONS(734), + [anon_sym_default] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_var] = ACTIONS(740), + [anon_sym_let] = ACTIONS(742), + [anon_sym_const] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(155), + [anon_sym_class] = ACTIONS(744), + [anon_sym_async] = ACTIONS(746), + [anon_sym_function] = ACTIONS(748), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [anon_sym_AT] = ACTIONS(87), + [sym__automatic_semicolon] = ACTIONS(155), + }, + [241] = { + [sym_string] = STATE(1170), + [sym__property_name] = STATE(1170), + [sym_computed_property_name] = STATE(1170), + [aux_sym_object_repeat1] = STATE(1060), + [aux_sym_object_pattern_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(820), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_await] = ACTIONS(820), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(808), + [sym_private_property_identifier] = ACTIONS(808), + [anon_sym_static] = ACTIONS(820), + [anon_sym_get] = ACTIONS(820), + [anon_sym_set] = ACTIONS(820), + [sym__automatic_semicolon] = ACTIONS(155), + }, + [242] = { + [sym_string] = STATE(1170), + [sym__property_name] = STATE(1170), + [sym_computed_property_name] = STATE(1170), + [aux_sym_object_repeat1] = STATE(1060), + [aux_sym_object_pattern_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(820), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_await] = ACTIONS(820), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(822), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(808), + [sym_private_property_identifier] = ACTIONS(808), + [anon_sym_static] = ACTIONS(820), + [anon_sym_get] = ACTIONS(824), + [anon_sym_set] = ACTIONS(824), + [sym__automatic_semicolon] = ACTIONS(155), + }, + [243] = { + [sym_string] = STATE(1170), + [sym__property_name] = STATE(1170), + [sym_computed_property_name] = STATE(1170), + [aux_sym_object_repeat1] = STATE(1060), + [aux_sym_object_pattern_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(820), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_await] = ACTIONS(820), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(808), + [sym_private_property_identifier] = ACTIONS(808), + [anon_sym_static] = ACTIONS(820), + [anon_sym_get] = ACTIONS(820), + [anon_sym_set] = ACTIONS(820), + [sym__automatic_semicolon] = ACTIONS(155), + }, + [244] = { + [sym_string] = STATE(1170), + [sym__property_name] = STATE(1170), + [sym_computed_property_name] = STATE(1170), + [aux_sym_object_repeat1] = STATE(1060), + [aux_sym_object_pattern_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(820), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_await] = ACTIONS(820), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(822), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(808), + [sym_private_property_identifier] = ACTIONS(808), + [anon_sym_static] = ACTIONS(820), + [anon_sym_get] = ACTIONS(824), + [anon_sym_set] = ACTIONS(824), + [sym__automatic_semicolon] = ACTIONS(155), + }, + [245] = { + [sym_string] = STATE(1170), + [sym__property_name] = STATE(1170), + [sym_computed_property_name] = STATE(1170), + [aux_sym_object_repeat1] = STATE(1117), + [aux_sym_object_pattern_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(820), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_await] = ACTIONS(820), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(822), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(808), + [sym_private_property_identifier] = ACTIONS(808), + [anon_sym_static] = ACTIONS(820), + [anon_sym_get] = ACTIONS(824), + [anon_sym_set] = ACTIONS(824), + [sym__automatic_semicolon] = ACTIONS(155), + }, + [246] = { + [sym_string] = STATE(1170), + [sym__property_name] = STATE(1170), + [sym_computed_property_name] = STATE(1170), + [aux_sym_object_repeat1] = STATE(1117), + [aux_sym_object_pattern_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(820), + [anon_sym_export] = ACTIONS(820), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_await] = ACTIONS(820), + [anon_sym_in] = ACTIONS(151), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(169), + [anon_sym_LBRACK] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(151), + [anon_sym_async] = ACTIONS(820), + [anon_sym_EQ_GT] = ACTIONS(177), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [sym_number] = ACTIONS(808), + [sym_private_property_identifier] = ACTIONS(808), + [anon_sym_static] = ACTIONS(820), + [anon_sym_get] = ACTIONS(820), + [anon_sym_set] = ACTIONS(820), + [sym__automatic_semicolon] = ACTIONS(155), + }, + [247] = { + [sym_formal_parameters] = STATE(1434), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(155), + [anon_sym_await] = ACTIONS(828), + [anon_sym_in] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(155), + [anon_sym_EQ] = ACTIONS(362), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_RBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(155), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(833), + [anon_sym_EQ_GT] = ACTIONS(332), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(155), + [anon_sym_static] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + }, + [248] = { + [ts_builtin_sym_end] = ACTIONS(515), + [sym_identifier] = ACTIONS(517), + [anon_sym_export] = ACTIONS(517), + [anon_sym_STAR] = ACTIONS(515), + [anon_sym_default] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(515), + [anon_sym_RBRACE] = ACTIONS(515), + [anon_sym_import] = ACTIONS(517), + [anon_sym_var] = ACTIONS(517), + [anon_sym_let] = ACTIONS(517), + [anon_sym_const] = ACTIONS(517), + [anon_sym_else] = ACTIONS(517), + [anon_sym_if] = ACTIONS(517), + [anon_sym_switch] = ACTIONS(517), + [anon_sym_for] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_await] = ACTIONS(517), + [anon_sym_while] = ACTIONS(517), + [anon_sym_do] = ACTIONS(517), + [anon_sym_try] = ACTIONS(517), + [anon_sym_with] = ACTIONS(517), + [anon_sym_break] = ACTIONS(517), + [anon_sym_continue] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_return] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_SEMI] = ACTIONS(515), + [anon_sym_case] = ACTIONS(517), + [anon_sym_catch] = ACTIONS(517), + [anon_sym_finally] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(515), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_SLASH] = ACTIONS(517), + [anon_sym_class] = ACTIONS(517), + [anon_sym_async] = ACTIONS(517), + [anon_sym_function] = ACTIONS(517), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(515), + [anon_sym_TILDE] = ACTIONS(515), + [anon_sym_typeof] = ACTIONS(517), + [anon_sym_void] = ACTIONS(517), + [anon_sym_delete] = ACTIONS(517), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(515), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(515), + [sym_number] = ACTIONS(515), + [sym_private_property_identifier] = ACTIONS(515), + [sym_this] = ACTIONS(517), + [sym_super] = ACTIONS(517), + [sym_true] = ACTIONS(517), + [sym_false] = ACTIONS(517), + [sym_null] = ACTIONS(517), + [sym_undefined] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [sym__automatic_semicolon] = ACTIONS(525), + }, + [249] = { + [ts_builtin_sym_end] = ACTIONS(527), + [sym_identifier] = ACTIONS(529), + [anon_sym_export] = ACTIONS(529), + [anon_sym_STAR] = ACTIONS(527), + [anon_sym_default] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(527), + [anon_sym_COMMA] = ACTIONS(527), + [anon_sym_RBRACE] = ACTIONS(527), + [anon_sym_import] = ACTIONS(529), + [anon_sym_var] = ACTIONS(529), + [anon_sym_let] = ACTIONS(529), + [anon_sym_const] = ACTIONS(529), + [anon_sym_else] = ACTIONS(529), + [anon_sym_if] = ACTIONS(529), + [anon_sym_switch] = ACTIONS(529), + [anon_sym_for] = ACTIONS(529), + [anon_sym_LPAREN] = ACTIONS(527), + [anon_sym_await] = ACTIONS(529), + [anon_sym_while] = ACTIONS(529), + [anon_sym_do] = ACTIONS(529), + [anon_sym_try] = ACTIONS(529), + [anon_sym_with] = ACTIONS(529), + [anon_sym_break] = ACTIONS(529), + [anon_sym_continue] = ACTIONS(529), + [anon_sym_debugger] = ACTIONS(529), + [anon_sym_return] = ACTIONS(529), + [anon_sym_throw] = ACTIONS(529), + [anon_sym_SEMI] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_catch] = ACTIONS(529), + [anon_sym_finally] = ACTIONS(529), + [anon_sym_yield] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_LT] = ACTIONS(527), + [anon_sym_SLASH] = ACTIONS(529), + [anon_sym_class] = ACTIONS(529), + [anon_sym_async] = ACTIONS(529), + [anon_sym_function] = ACTIONS(529), + [anon_sym_new] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_BANG] = ACTIONS(527), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [anon_sym_PLUS_PLUS] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(527), + [anon_sym_DQUOTE] = ACTIONS(527), + [anon_sym_SQUOTE] = ACTIONS(527), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(527), + [sym_number] = ACTIONS(527), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(529), + [sym_super] = ACTIONS(529), + [sym_true] = ACTIONS(529), + [sym_false] = ACTIONS(529), + [sym_null] = ACTIONS(529), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(527), + [anon_sym_static] = ACTIONS(529), + [anon_sym_get] = ACTIONS(529), + [anon_sym_set] = ACTIONS(529), + [sym__automatic_semicolon] = ACTIONS(835), + }, + [250] = { + [sym_formal_parameters] = STATE(1434), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RBRACE] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(155), + [anon_sym_await] = ACTIONS(828), + [anon_sym_in] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(155), + [anon_sym_EQ] = ACTIONS(324), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_RBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(155), + [anon_sym_async] = ACTIONS(828), + [anon_sym_function] = ACTIONS(833), + [anon_sym_EQ_GT] = ACTIONS(332), + [anon_sym_QMARK_DOT] = ACTIONS(155), + [anon_sym_PLUS_EQ] = ACTIONS(179), + [anon_sym_DASH_EQ] = ACTIONS(179), + [anon_sym_STAR_EQ] = ACTIONS(179), + [anon_sym_SLASH_EQ] = ACTIONS(179), + [anon_sym_PERCENT_EQ] = ACTIONS(179), + [anon_sym_CARET_EQ] = ACTIONS(179), + [anon_sym_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_EQ] = ACTIONS(179), + [anon_sym_GT_GT_EQ] = ACTIONS(179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(179), + [anon_sym_LT_LT_EQ] = ACTIONS(179), + [anon_sym_STAR_STAR_EQ] = ACTIONS(179), + [anon_sym_AMP_AMP_EQ] = ACTIONS(179), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(179), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_AMP_AMP] = ACTIONS(151), + [anon_sym_PIPE_PIPE] = ACTIONS(151), + [anon_sym_GT_GT] = ACTIONS(151), + [anon_sym_GT_GT_GT] = ACTIONS(151), + [anon_sym_LT_LT] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(151), + [anon_sym_CARET] = ACTIONS(151), + [anon_sym_PIPE] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_PERCENT] = ACTIONS(151), + [anon_sym_STAR_STAR] = ACTIONS(151), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_EQ_EQ] = ACTIONS(151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(155), + [anon_sym_BANG_EQ] = ACTIONS(151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(155), + [anon_sym_GT_EQ] = ACTIONS(155), + [anon_sym_QMARK_QMARK] = ACTIONS(151), + [anon_sym_instanceof] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(155), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(428), - [sym_number] = ACTIONS(428), - [sym_private_property_identifier] = ACTIONS(428), - [sym_this] = ACTIONS(430), - [sym_super] = ACTIONS(430), - [sym_true] = ACTIONS(430), - [sym_false] = ACTIONS(430), - [sym_null] = ACTIONS(430), - [sym_undefined] = ACTIONS(430), - [anon_sym_AT] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), - [sym__automatic_semicolon] = ACTIONS(438), + [anon_sym_BQUOTE] = ACTIONS(155), + [anon_sym_static] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), }, }; @@ -24380,31 +28268,261 @@ static const uint16_t ts_small_parse_table[] = { [0] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(749), 1, - sym_identifier, - ACTIONS(753), 1, + ACTIONS(177), 1, + anon_sym_EQ_GT, + ACTIONS(362), 1, + anon_sym_EQ, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(756), 1, + ACTIONS(837), 1, + sym_identifier, + ACTIONS(841), 1, + anon_sym_function, + STATE(1398), 1, + sym_formal_parameters, + ACTIONS(839), 6, + anon_sym_export, + anon_sym_await, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(155), 14, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + 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(179), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(151), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [87] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(177), 1, + anon_sym_EQ_GT, + ACTIONS(397), 1, anon_sym_EQ, - ACTIONS(758), 1, + ACTIONS(407), 1, + anon_sym_COLON, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(837), 1, + sym_identifier, + ACTIONS(843), 1, anon_sym_function, - ACTIONS(760), 1, + STATE(1398), 1, + sym_formal_parameters, + ACTIONS(839), 6, + anon_sym_export, + anon_sym_await, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(155), 13, + sym__automatic_semicolon, + 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(179), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(151), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [176] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(177), 1, anon_sym_EQ_GT, - STATE(1353), 1, + ACTIONS(397), 1, + anon_sym_EQ, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(837), 1, + sym_identifier, + ACTIONS(841), 1, + anon_sym_function, + STATE(1398), 1, sym_formal_parameters, - ACTIONS(751), 5, + ACTIONS(839), 6, anon_sym_export, + anon_sym_await, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(641), 15, + ACTIONS(155), 14, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + 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(179), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(151), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [263] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(332), 1, + anon_sym_EQ_GT, + ACTIONS(402), 1, + anon_sym_EQ, + ACTIONS(826), 1, + sym_identifier, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_function, + STATE(1434), 1, + sym_formal_parameters, + ACTIONS(399), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_RBRACK, + ACTIONS(828), 6, + anon_sym_export, + anon_sym_await, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(155), 10, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -24414,7 +28532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(667), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24430,7 +28548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(652), 22, + ACTIONS(151), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -24453,10 +28571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [87] = 3, + [352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 19, + ACTIONS(581), 19, ts_builtin_sym_end, anon_sym_STAR, anon_sym_LBRACE, @@ -24476,7 +28594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(534), 44, + ACTIONS(583), 44, anon_sym_export, anon_sym_default, anon_sym_import, @@ -24521,34 +28639,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [158] = 11, + [423] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(749), 1, - sym_identifier, - ACTIONS(753), 1, - anon_sym_LPAREN, - ACTIONS(758), 1, - anon_sym_function, - ACTIONS(760), 1, + ACTIONS(177), 1, anon_sym_EQ_GT, - ACTIONS(762), 1, + ACTIONS(392), 1, + anon_sym_in, + ACTIONS(395), 1, + anon_sym_of, + ACTIONS(397), 1, anon_sym_EQ, - STATE(1353), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(837), 1, + sym_identifier, + ACTIONS(841), 1, + anon_sym_function, + STATE(1398), 1, sym_formal_parameters, - ACTIONS(751), 5, + ACTIONS(839), 6, anon_sym_export, + anon_sym_await, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(641), 15, + ACTIONS(155), 13, + sym__automatic_semicolon, 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_QMARK_DOT, anon_sym_LT_EQ, @@ -24558,7 +28679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(667), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24574,9 +28695,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(652), 22, + ACTIONS(151), 21, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -24597,10 +28717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [245] = 3, + [514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(440), 19, + ACTIONS(527), 19, ts_builtin_sym_end, anon_sym_STAR, anon_sym_LBRACE, @@ -24620,7 +28740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(442), 44, + ACTIONS(529), 44, anon_sym_export, anon_sym_default, anon_sym_import, @@ -24665,30 +28785,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [316] = 12, + [585] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(665), 1, + ACTIONS(177), 1, anon_sym_EQ_GT, - ACTIONS(709), 1, + ACTIONS(397), 1, anon_sym_EQ, - ACTIONS(713), 1, + ACTIONS(405), 1, anon_sym_COLON, - ACTIONS(753), 1, + ACTIONS(806), 1, + anon_sym_function, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(764), 1, + ACTIONS(837), 1, sym_identifier, - ACTIONS(768), 1, - anon_sym_function, - STATE(1340), 1, + STATE(1398), 1, sym_formal_parameters, - ACTIONS(766), 5, + ACTIONS(839), 6, anon_sym_export, + anon_sym_await, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(641), 13, + ACTIONS(155), 13, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -24702,7 +28823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(667), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24718,7 +28839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(652), 22, + ACTIONS(151), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -24741,18 +28862,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [404] = 7, + [674] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(774), 1, + ACTIONS(849), 1, anon_sym_catch, - ACTIONS(776), 1, + ACTIONS(851), 1, anon_sym_finally, - STATE(225), 1, + STATE(266), 1, sym_catch_clause, - STATE(338), 1, + STATE(363), 1, sym_finally_clause, - ACTIONS(770), 16, + ACTIONS(845), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -24769,7 +28890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(772), 42, + ACTIONS(847), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -24812,31 +28933,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [482] = 11, + [752] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(665), 1, + ACTIONS(177), 1, anon_sym_EQ_GT, - ACTIONS(709), 1, + ACTIONS(397), 1, anon_sym_EQ, - ACTIONS(753), 1, + ACTIONS(806), 1, + anon_sym_function, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(764), 1, + ACTIONS(837), 1, sym_identifier, - ACTIONS(778), 1, - anon_sym_function, - STATE(1340), 1, + STATE(1398), 1, sym_formal_parameters, - ACTIONS(766), 5, + ACTIONS(839), 6, anon_sym_export, + anon_sym_await, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(641), 14, + ACTIONS(155), 12, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -24848,7 +28968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(667), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24864,7 +28984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(652), 22, + ACTIONS(151), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -24887,31 +29007,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [568] = 11, + [837] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(665), 1, + ACTIONS(177), 1, anon_sym_EQ_GT, - ACTIONS(753), 1, - anon_sym_LPAREN, - ACTIONS(762), 1, + ACTIONS(397), 1, anon_sym_EQ, - ACTIONS(764), 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(837), 1, sym_identifier, - ACTIONS(778), 1, + ACTIONS(843), 1, anon_sym_function, - STATE(1340), 1, + STATE(1398), 1, sym_formal_parameters, - ACTIONS(766), 5, + ACTIONS(839), 6, anon_sym_export, + anon_sym_await, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(641), 14, + ACTIONS(155), 12, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -24923,7 +29042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(667), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -24939,7 +29058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(652), 22, + ACTIONS(151), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -24962,33 +29081,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [654] = 12, + [922] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(749), 1, + ACTIONS(332), 1, + anon_sym_EQ_GT, + ACTIONS(399), 1, + anon_sym_RBRACK, + ACTIONS(402), 1, + anon_sym_EQ, + ACTIONS(431), 1, + anon_sym_COMMA, + ACTIONS(826), 1, sym_identifier, - ACTIONS(753), 1, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(758), 1, + ACTIONS(833), 1, anon_sym_function, - ACTIONS(760), 1, - anon_sym_EQ_GT, - ACTIONS(783), 1, - anon_sym_EQ, - STATE(1353), 1, + STATE(1434), 1, sym_formal_parameters, - ACTIONS(780), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(751), 5, + ACTIONS(828), 6, anon_sym_export, + anon_sym_await, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(641), 10, + ACTIONS(155), 10, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -24999,7 +29118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(667), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -25015,7 +29134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(652), 22, + ACTIONS(151), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -25038,35 +29157,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [742] = 13, + [1011] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(665), 1, - anon_sym_EQ_GT, - ACTIONS(709), 1, + ACTIONS(362), 1, anon_sym_EQ, - ACTIONS(753), 1, - anon_sym_LPAREN, - ACTIONS(764), 1, - sym_identifier, - ACTIONS(778), 1, - anon_sym_function, - ACTIONS(786), 1, + ACTIONS(392), 1, anon_sym_in, - ACTIONS(789), 1, + ACTIONS(395), 1, anon_sym_of, - STATE(1340), 1, + ACTIONS(457), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_function, + ACTIONS(853), 1, + sym_identifier, + STATE(1381), 1, sym_formal_parameters, - ACTIONS(766), 5, + ACTIONS(855), 6, anon_sym_export, + anon_sym_await, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(641), 13, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(155), 10, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -25077,7 +29194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(667), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -25093,7 +29210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(652), 21, + ACTIONS(151), 21, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -25115,33 +29232,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [832] = 12, + [1099] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(665), 1, - anon_sym_EQ_GT, - ACTIONS(707), 1, - anon_sym_COLON, - ACTIONS(709), 1, + ACTIONS(362), 1, anon_sym_EQ, - ACTIONS(735), 1, - anon_sym_function, - ACTIONS(753), 1, + ACTIONS(457), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(764), 1, + ACTIONS(833), 1, + anon_sym_function, + ACTIONS(853), 1, sym_identifier, - STATE(1340), 1, + STATE(1381), 1, sym_formal_parameters, - ACTIONS(766), 5, + ACTIONS(855), 6, anon_sym_export, + anon_sym_await, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(641), 13, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(155), 11, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -25152,7 +29266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(667), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -25168,7 +29282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(652), 22, + ACTIONS(151), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -25191,30 +29305,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [920] = 11, + [1183] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(753), 1, + ACTIONS(467), 1, + anon_sym_EQ, + ACTIONS(471), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(758), 1, + ACTIONS(833), 1, anon_sym_function, - ACTIONS(762), 1, - anon_sym_EQ, - ACTIONS(791), 1, + ACTIONS(857), 1, sym_identifier, - ACTIONS(795), 1, - anon_sym_EQ_GT, - STATE(1331), 1, + STATE(1428), 1, sym_formal_parameters, - ACTIONS(793), 5, + ACTIONS(859), 6, anon_sym_export, + anon_sym_await, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(641), 12, + ACTIONS(155), 11, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -25225,7 +29339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(667), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -25241,7 +29355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(652), 22, + ACTIONS(151), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -25264,160 +29378,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1004] = 11, + [1267] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(665), 1, - anon_sym_EQ_GT, - ACTIONS(709), 1, - anon_sym_EQ, - ACTIONS(735), 1, - anon_sym_function, - ACTIONS(753), 1, - anon_sym_LPAREN, - ACTIONS(764), 1, - sym_identifier, - STATE(1340), 1, - sym_formal_parameters, - ACTIONS(766), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(641), 12, - sym__automatic_semicolon, - 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(667), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(652), 22, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1088] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(665), 1, - anon_sym_EQ_GT, - ACTIONS(709), 1, - anon_sym_EQ, - ACTIONS(753), 1, - anon_sym_LPAREN, - ACTIONS(764), 1, - sym_identifier, - ACTIONS(768), 1, - anon_sym_function, - STATE(1340), 1, - sym_formal_parameters, - ACTIONS(766), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(641), 12, - sym__automatic_semicolon, - 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(667), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(652), 22, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1172] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(776), 1, + ACTIONS(851), 1, anon_sym_finally, - STATE(274), 1, + STATE(303), 1, sym_finally_clause, - ACTIONS(797), 16, + ACTIONS(861), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -25434,7 +29402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(799), 42, + ACTIONS(863), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -25477,32 +29445,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1244] = 13, + [1339] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(749), 1, - sym_identifier, - ACTIONS(753), 1, + ACTIONS(362), 1, + anon_sym_EQ, + ACTIONS(471), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, anon_sym_LPAREN, - ACTIONS(758), 1, + ACTIONS(833), 1, anon_sym_function, - ACTIONS(760), 1, - anon_sym_EQ_GT, - ACTIONS(780), 1, - anon_sym_RBRACK, - ACTIONS(783), 1, - anon_sym_EQ, - ACTIONS(801), 1, - anon_sym_COMMA, - STATE(1353), 1, + ACTIONS(857), 1, + sym_identifier, + STATE(1428), 1, sym_formal_parameters, - ACTIONS(751), 5, + ACTIONS(859), 6, anon_sym_export, + anon_sym_await, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(641), 10, + ACTIONS(155), 11, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -25513,7 +29479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(667), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -25529,7 +29495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(652), 22, + ACTIONS(151), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -25552,11 +29518,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1332] = 3, + [1423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(536), 17, + ACTIONS(625), 1, sym__automatic_semicolon, + ACTIONS(617), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -25573,7 +29540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(538), 42, + ACTIONS(619), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -25616,10 +29583,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1399] = 3, + [1492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(803), 16, + ACTIONS(865), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -25636,7 +29603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(805), 43, + ACTIONS(867), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -25680,84 +29647,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1466] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(753), 1, - anon_sym_LPAREN, - ACTIONS(758), 1, - anon_sym_function, - ACTIONS(762), 1, - anon_sym_EQ, - ACTIONS(786), 1, - anon_sym_in, - ACTIONS(789), 1, - anon_sym_of, - ACTIONS(791), 1, - sym_identifier, - ACTIONS(795), 1, - anon_sym_EQ_GT, - STATE(1331), 1, - sym_formal_parameters, - ACTIONS(793), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(641), 10, - anon_sym_LBRACK, - anon_sym_DOT, - 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(667), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(652), 21, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1553] = 3, + [1559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(807), 16, + ACTIONS(869), 1, + sym__automatic_semicolon, + ACTIONS(515), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -25774,7 +29669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(809), 43, + ACTIONS(517), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -25796,7 +29691,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_SLASH, anon_sym_class, @@ -25818,10 +29712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1620] = 3, + [1628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(518), 17, + ACTIONS(567), 17, sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, @@ -25839,7 +29733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(520), 42, + ACTIONS(569), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -25882,11 +29776,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1687] = 3, + [1695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(440), 17, + ACTIONS(549), 1, sym__automatic_semicolon, + ACTIONS(541), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -25903,7 +29798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(442), 42, + ACTIONS(543), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -25946,14 +29841,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1754] = 5, + [1764] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(815), 1, - anon_sym_else, - STATE(293), 1, - sym_else_clause, - ACTIONS(811), 16, + ACTIONS(603), 1, + sym__automatic_semicolon, + ACTIONS(595), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -25970,13 +29863,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(813), 41, + ACTIONS(597), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -26012,15 +29906,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1825] = 3, + [1833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(817), 17, + ACTIONS(615), 1, + sym__automatic_semicolon, + ACTIONS(607), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LT, @@ -26033,7 +29928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(819), 42, + ACTIONS(609), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26076,12 +29971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1892] = 4, + [1902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(530), 1, + ACTIONS(579), 1, sym__automatic_semicolon, - ACTIONS(522), 16, + ACTIONS(571), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26098,7 +29993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(524), 42, + ACTIONS(573), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26141,12 +30036,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1961] = 4, + [1971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(506), 1, + ACTIONS(561), 17, sym__automatic_semicolon, - ACTIONS(498), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26163,7 +30057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(500), 42, + ACTIONS(563), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26206,12 +30100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2030] = 4, + [2038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(486), 1, + ACTIONS(871), 1, sym__automatic_semicolon, - ACTIONS(478), 16, + ACTIONS(527), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26228,7 +30122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(480), 42, + ACTIONS(529), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26271,12 +30165,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2099] = 4, + [2107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(476), 1, + ACTIONS(527), 17, sym__automatic_semicolon, - ACTIONS(468), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26293,7 +30186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(470), 42, + ACTIONS(529), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26336,15 +30229,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2168] = 3, + [2174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(821), 17, + ACTIONS(581), 17, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LT, @@ -26357,7 +30250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(823), 42, + ACTIONS(583), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26400,12 +30293,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2235] = 4, + [2241] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(456), 1, + ACTIONS(559), 1, sym__automatic_semicolon, - ACTIONS(448), 16, + ACTIONS(551), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26422,7 +30315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(450), 42, + ACTIONS(553), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26465,12 +30358,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2304] = 4, + [2310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(496), 1, + ACTIONS(539), 1, sym__automatic_semicolon, - ACTIONS(488), 16, + ACTIONS(531), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26487,7 +30380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(490), 42, + ACTIONS(533), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26530,12 +30423,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2373] = 4, + [2379] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(516), 1, - sym__automatic_semicolon, - ACTIONS(508), 16, + ACTIONS(877), 1, + anon_sym_else, + STATE(344), 1, + sym_else_clause, + ACTIONS(873), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26552,14 +30447,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(510), 42, + ACTIONS(875), 41, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -26595,16 +30489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2442] = 4, + [2450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(825), 1, - sym__automatic_semicolon, - ACTIONS(440), 16, + ACTIONS(879), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LT, @@ -26617,7 +30510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(442), 42, + ACTIONS(881), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26660,16 +30553,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2511] = 4, + [2517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(466), 1, - sym__automatic_semicolon, - ACTIONS(458), 16, + ACTIONS(883), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LT, @@ -26682,7 +30574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(460), 42, + ACTIONS(885), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26725,11 +30617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2580] = 3, + [2584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 17, - sym__automatic_semicolon, + ACTIONS(887), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26746,7 +30637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(534), 42, + ACTIONS(889), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26768,6 +30659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_SLASH, anon_sym_class, @@ -26789,12 +30681,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2647] = 4, + [2651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(827), 1, + ACTIONS(593), 1, sym__automatic_semicolon, - ACTIONS(428), 16, + ACTIONS(585), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26811,7 +30703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(430), 42, + ACTIONS(587), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26854,10 +30746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2716] = 3, + [2720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(829), 16, + ACTIONS(891), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26874,7 +30766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(831), 42, + ACTIONS(893), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26917,10 +30809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2782] = 3, + [2786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -26937,7 +30829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -26980,10 +30872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2848] = 3, + [2852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27000,7 +30892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27043,10 +30935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2914] = 3, + [2918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(891), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27063,7 +30955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(893), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27106,10 +30998,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2980] = 3, + [2984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(903), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27126,7 +31018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(905), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27169,10 +31061,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3046] = 3, + [3050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(907), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27189,7 +31081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(909), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27232,10 +31124,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3112] = 3, + [3116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(837), 16, + ACTIONS(911), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27252,7 +31144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(839), 42, + ACTIONS(913), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27295,10 +31187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3178] = 3, + [3182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(915), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27315,7 +31207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(917), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27358,10 +31250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3244] = 3, + [3248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(919), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27378,7 +31270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(921), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27421,10 +31313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3310] = 3, + [3314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(841), 16, + ACTIONS(923), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27441,7 +31333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(843), 42, + ACTIONS(925), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27484,10 +31376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3376] = 3, + [3380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(927), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27504,7 +31396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(929), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27547,10 +31439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3442] = 3, + [3446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(931), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27567,7 +31459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(933), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27610,10 +31502,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3508] = 3, + [3512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(935), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27630,7 +31522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(937), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27673,10 +31565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3574] = 3, + [3578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(939), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27693,7 +31585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(941), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27736,10 +31628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3640] = 3, + [3644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(943), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27756,7 +31648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(945), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27799,10 +31691,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3706] = 3, + [3710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(947), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27819,7 +31711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(949), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27862,10 +31754,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3772] = 3, + [3776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(951), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27882,7 +31774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(953), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27925,10 +31817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3838] = 3, + [3842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(845), 16, + ACTIONS(955), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27945,7 +31837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(847), 42, + ACTIONS(957), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -27988,10 +31880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3904] = 3, + [3908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(849), 16, + ACTIONS(959), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28008,7 +31900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(851), 42, + ACTIONS(961), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28051,10 +31943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3970] = 3, + [3974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(853), 16, + ACTIONS(963), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28071,7 +31963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(855), 42, + ACTIONS(965), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28114,10 +32006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4036] = 3, + [4040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(857), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28134,7 +32026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(859), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28177,10 +32069,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4102] = 3, + [4106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(861), 16, + ACTIONS(939), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28197,7 +32089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(863), 42, + ACTIONS(941), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28240,10 +32132,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4168] = 3, + [4172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(861), 16, + ACTIONS(967), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28260,7 +32152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(863), 42, + ACTIONS(969), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28303,10 +32195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4234] = 3, + [4238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(971), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28323,7 +32215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(973), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28366,10 +32258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4300] = 3, + [4304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28386,7 +32278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28429,10 +32321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4366] = 3, + [4370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(975), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28449,7 +32341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(977), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28492,10 +32384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4432] = 3, + [4436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 16, + ACTIONS(979), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28512,7 +32404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(867), 42, + ACTIONS(981), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28555,10 +32447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4498] = 3, + [4502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(869), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28575,7 +32467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(871), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28618,10 +32510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4564] = 3, + [4568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(873), 16, + ACTIONS(983), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28638,7 +32530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(875), 42, + ACTIONS(985), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28681,10 +32573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4630] = 3, + [4634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 16, + ACTIONS(987), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28701,7 +32593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(879), 42, + ACTIONS(989), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28744,10 +32636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4696] = 3, + [4700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 16, + ACTIONS(983), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28764,7 +32656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(883), 42, + ACTIONS(985), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28807,10 +32699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4762] = 3, + [4766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(885), 16, + ACTIONS(991), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28827,7 +32719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(887), 42, + ACTIONS(993), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28870,10 +32762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4828] = 3, + [4832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(889), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28890,7 +32782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(891), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28933,10 +32825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4894] = 3, + [4898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(893), 16, + ACTIONS(995), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28953,7 +32845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(895), 42, + ACTIONS(997), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -28996,10 +32888,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4960] = 3, + [4964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(897), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29016,7 +32908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(899), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29059,10 +32951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5026] = 3, + [5030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(901), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29079,7 +32971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(903), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29122,10 +33014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5092] = 3, + [5096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(901), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29142,7 +33034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(903), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29185,10 +33077,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5158] = 3, + [5162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(901), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29205,7 +33097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(903), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29248,10 +33140,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5224] = 3, + [5228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29268,7 +33160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(907), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29311,10 +33203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5290] = 3, + [5294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(901), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29331,7 +33223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(903), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29374,10 +33266,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5356] = 3, + [5360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29394,7 +33286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(911), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29437,10 +33329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5422] = 3, + [5426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(913), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29457,7 +33349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(915), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29500,10 +33392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5488] = 3, + [5492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29520,7 +33412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(919), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29563,10 +33455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5554] = 3, + [5558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29583,7 +33475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(923), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29626,10 +33518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5620] = 3, + [5624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(901), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29646,7 +33538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(903), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29689,10 +33581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5686] = 3, + [5690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(901), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29709,7 +33601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(903), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29752,10 +33644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5752] = 3, + [5756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29772,7 +33664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(927), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29815,10 +33707,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5818] = 3, + [5822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(929), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29835,7 +33727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(931), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29878,10 +33770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5884] = 3, + [5888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29898,7 +33790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -29941,10 +33833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5950] = 3, + [5954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -29961,7 +33853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30004,10 +33896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6016] = 3, + [6020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(933), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30024,7 +33916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(935), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30067,10 +33959,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6082] = 3, + [6086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(937), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30087,7 +33979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(939), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30130,10 +34022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6148] = 3, + [6152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30150,7 +34042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(943), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30193,10 +34085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6214] = 3, + [6218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 16, + ACTIONS(895), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30213,7 +34105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(943), 42, + ACTIONS(897), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30256,10 +34148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6280] = 3, + [6284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(945), 16, + ACTIONS(983), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30276,7 +34168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(947), 42, + ACTIONS(985), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30319,10 +34211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6346] = 3, + [6350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(949), 16, + ACTIONS(983), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30339,7 +34231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(951), 42, + ACTIONS(985), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30382,10 +34274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6412] = 3, + [6416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(953), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30402,7 +34294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(955), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30445,10 +34337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6478] = 3, + [6482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(957), 16, + ACTIONS(999), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30465,7 +34357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(959), 42, + ACTIONS(1001), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30508,10 +34400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6544] = 3, + [6548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(961), 16, + ACTIONS(1003), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30528,7 +34420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(963), 42, + ACTIONS(1005), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30571,10 +34463,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6610] = 3, + [6614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 16, + ACTIONS(983), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30591,7 +34483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(967), 42, + ACTIONS(985), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30634,10 +34526,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6676] = 3, + [6680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(983), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30654,7 +34546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(835), 42, + ACTIONS(985), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30697,10 +34589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6742] = 3, + [6746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(969), 16, + ACTIONS(1007), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30717,7 +34609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(971), 42, + ACTIONS(1009), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30760,10 +34652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6808] = 3, + [6812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(973), 16, + ACTIONS(1011), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30780,7 +34672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(975), 42, + ACTIONS(1013), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30823,10 +34715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6874] = 3, + [6878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(977), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30843,7 +34735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(979), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30886,10 +34778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6940] = 3, + [6944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(981), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30906,7 +34798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(983), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -30949,10 +34841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7006] = 3, + [7010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(985), 16, + ACTIONS(1015), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -30969,7 +34861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(987), 42, + ACTIONS(1017), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31012,10 +34904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7072] = 3, + [7076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 16, + ACTIONS(1019), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31032,7 +34924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(991), 42, + ACTIONS(1021), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31075,10 +34967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7138] = 3, + [7142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31095,7 +34987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(995), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31138,10 +35030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7204] = 3, + [7208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(997), 16, + ACTIONS(1023), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31158,7 +35050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(999), 42, + ACTIONS(1025), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31201,10 +35093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7270] = 3, + [7274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1001), 16, + ACTIONS(1027), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31221,7 +35113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1003), 42, + ACTIONS(1029), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31264,10 +35156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7336] = 3, + [7340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(1031), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31284,7 +35176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(1033), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31327,10 +35219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7402] = 3, + [7406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(1035), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31347,7 +35239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(1037), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31390,10 +35282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7468] = 3, + [7472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31410,7 +35302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31453,10 +35345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7534] = 3, + [7538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(1039), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31473,7 +35365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(1041), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31516,10 +35408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7600] = 3, + [7604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31536,7 +35428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31579,10 +35471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7666] = 3, + [7670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31599,7 +35491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31642,10 +35534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7732] = 3, + [7736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(1043), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31662,7 +35554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(1045), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31705,10 +35597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7798] = 3, + [7802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(1047), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31725,7 +35617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(1049), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31768,10 +35660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7864] = 3, + [7868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(1051), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31788,7 +35680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(1053), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31831,10 +35723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7930] = 3, + [7934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(1055), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31851,7 +35743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(1057), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31894,10 +35786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7996] = 3, + [8000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(1059), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31914,7 +35806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(1061), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -31957,10 +35849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8062] = 3, + [8066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(1063), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31977,7 +35869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(1065), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -32020,10 +35912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8128] = 3, + [8132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32040,7 +35932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -32083,10 +35975,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8194] = 3, + [8198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32103,7 +35995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -32146,10 +36038,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8260] = 3, + [8264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32166,7 +36058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -32209,10 +36101,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8326] = 3, + [8330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32229,7 +36121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -32272,10 +36164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8392] = 3, + [8396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(1067), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32292,7 +36184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(1069), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -32335,10 +36227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8458] = 3, + [8462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(1071), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32355,7 +36247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(1073), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -32398,10 +36290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8524] = 3, + [8528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32418,7 +36310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -32461,10 +36353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8590] = 3, + [8594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 16, + ACTIONS(1075), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32481,7 +36373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1007), 42, + ACTIONS(1077), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -32524,10 +36416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8656] = 3, + [8660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1009), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32544,7 +36436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1011), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -32587,10 +36479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8722] = 3, + [8726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1013), 16, + ACTIONS(899), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32607,7 +36499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1015), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -32650,24 +36542,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8788] = 11, + [8792] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(643), 1, - anon_sym_RBRACE, - ACTIONS(654), 1, + ACTIONS(166), 1, anon_sym_COLON, - ACTIONS(1021), 1, + ACTIONS(183), 1, + anon_sym_RBRACE, + ACTIONS(1083), 1, anon_sym_LPAREN, - ACTIONS(1024), 1, + ACTIONS(1086), 1, anon_sym_EQ, - ACTIONS(1026), 1, + ACTIONS(1088), 1, anon_sym_EQ_GT, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - STATE(1082), 1, + STATE(1060), 1, aux_sym_object_repeat1, - ACTIONS(1019), 14, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1081), 14, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -32682,7 +36574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1028), 15, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32698,7 +36590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1017), 21, + ACTIONS(1079), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -32720,24 +36612,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8869] = 11, + [8873] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, + ACTIONS(166), 1, anon_sym_COLON, - ACTIONS(671), 1, + ACTIONS(181), 1, anon_sym_RBRACE, - ACTIONS(1021), 1, + ACTIONS(1083), 1, anon_sym_LPAREN, - ACTIONS(1024), 1, + ACTIONS(1086), 1, anon_sym_EQ, - ACTIONS(1026), 1, + ACTIONS(1088), 1, anon_sym_EQ_GT, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - STATE(1082), 1, + STATE(1060), 1, aux_sym_object_repeat1, - ACTIONS(1019), 14, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1081), 14, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -32752,7 +36644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1028), 15, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32768,7 +36660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1017), 21, + ACTIONS(1079), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -32790,24 +36682,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8950] = 11, + [8954] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(654), 1, - anon_sym_COLON, - ACTIONS(675), 1, + ACTIONS(157), 1, anon_sym_RBRACE, - ACTIONS(1021), 1, + ACTIONS(166), 1, + anon_sym_COLON, + ACTIONS(1083), 1, anon_sym_LPAREN, - ACTIONS(1024), 1, + ACTIONS(1086), 1, anon_sym_EQ, - ACTIONS(1026), 1, + ACTIONS(1088), 1, anon_sym_EQ_GT, - STATE(1025), 1, + STATE(1117), 1, aux_sym_object_repeat1, - STATE(1026), 1, + STATE(1118), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1019), 14, + ACTIONS(1081), 14, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -32822,7 +36714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1028), 15, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -32838,7 +36730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1017), 21, + ACTIONS(1079), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -32860,10 +36752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9031] = 3, + [9035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1030), 22, + ACTIONS(1092), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -32886,7 +36778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1032), 34, + ACTIONS(1094), 34, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -32921,10 +36813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9095] = 3, + [9099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1034), 22, + ACTIONS(1096), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -32947,7 +36839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1036), 34, + ACTIONS(1098), 34, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -32982,10 +36874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9159] = 3, + [9163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1038), 22, + ACTIONS(1100), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -33008,7 +36900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1040), 34, + ACTIONS(1102), 34, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -33043,10 +36935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9223] = 3, + [9227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1042), 22, + ACTIONS(1104), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -33069,7 +36961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1044), 34, + ACTIONS(1106), 34, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -33104,10 +36996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9287] = 3, + [9291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1046), 22, + ACTIONS(1108), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -33130,7 +37022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1048), 34, + ACTIONS(1110), 34, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -33165,14 +37057,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9351] = 6, + [9355] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1050), 1, + ACTIONS(1112), 1, anon_sym_EQ, - ACTIONS(1052), 1, - anon_sym_EQ_GT, - ACTIONS(1028), 15, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33188,7 +37078,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(1019), 17, + ACTIONS(1081), 18, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -33206,7 +37097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1017), 21, + ACTIONS(1079), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33228,12 +37119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9420] = 5, + [9422] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(324), 1, anon_sym_EQ, - ACTIONS(1028), 15, + ACTIONS(332), 1, + anon_sym_EQ_GT, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33249,8 +37142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1019), 18, - anon_sym_LBRACE, + ACTIONS(155), 17, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -33268,7 +37160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1017), 21, + ACTIONS(151), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33290,14 +37182,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9487] = 6, + [9491] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(1114), 1, anon_sym_EQ, - ACTIONS(760), 1, + ACTIONS(1116), 1, anon_sym_EQ_GT, - ACTIONS(667), 15, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33313,7 +37205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(641), 17, + ACTIONS(1081), 17, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -33331,7 +37223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(652), 21, + ACTIONS(1079), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33353,14 +37245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9556] = 6, + [9560] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(760), 1, - anon_sym_EQ_GT, - ACTIONS(762), 1, + ACTIONS(1112), 1, anon_sym_EQ, - ACTIONS(667), 15, + ACTIONS(1116), 1, + anon_sym_EQ_GT, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33376,7 +37268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(641), 17, + ACTIONS(1081), 17, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -33394,7 +37286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(652), 21, + ACTIONS(1079), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33416,14 +37308,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9625] = 6, + [9629] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1052), 1, + ACTIONS(332), 1, anon_sym_EQ_GT, - ACTIONS(1054), 1, + ACTIONS(362), 1, anon_sym_EQ, - ACTIONS(1028), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33439,7 +37331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1019), 17, + ACTIONS(155), 17, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -33457,7 +37349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1017), 21, + ACTIONS(151), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33479,14 +37371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9694] = 6, + [9698] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1026), 1, + ACTIONS(177), 1, anon_sym_EQ_GT, - ACTIONS(1054), 1, + ACTIONS(397), 1, anon_sym_EQ, - ACTIONS(1028), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33502,7 +37394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1019), 16, + ACTIONS(155), 16, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -33519,7 +37411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1017), 21, + ACTIONS(151), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33541,10 +37433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9762] = 3, + [9766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1038), 22, + ACTIONS(1100), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -33567,7 +37459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1040), 32, + ACTIONS(1102), 32, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -33600,16 +37492,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9824] = 7, + [9828] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(665), 1, + ACTIONS(177), 1, anon_sym_EQ_GT, - ACTIONS(709), 1, + ACTIONS(397), 1, anon_sym_EQ, - ACTIONS(713), 1, + ACTIONS(405), 1, anon_sym_COLON, - ACTIONS(641), 15, + ACTIONS(155), 15, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, @@ -33625,7 +37517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(667), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33641,7 +37533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(652), 21, + ACTIONS(151), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33663,32 +37555,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9894] = 7, + [9898] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(707), 1, - anon_sym_COLON, - ACTIONS(1026), 1, + ACTIONS(1088), 1, anon_sym_EQ_GT, - ACTIONS(1056), 1, + ACTIONS(1112), 1, anon_sym_EQ, - ACTIONS(1019), 15, - sym__automatic_semicolon, - 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(1028), 15, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33704,7 +37578,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(1017), 21, + ACTIONS(1081), 16, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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(1079), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33726,32 +37617,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9964] = 7, + [9966] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, - anon_sym_COLON, - ACTIONS(1026), 1, + ACTIONS(177), 1, anon_sym_EQ_GT, - ACTIONS(1056), 1, + ACTIONS(362), 1, anon_sym_EQ, - ACTIONS(1019), 15, - sym__automatic_semicolon, - 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(1028), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33767,7 +37640,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(1017), 21, + ACTIONS(155), 16, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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(151), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33792,7 +37682,7 @@ static const uint16_t ts_small_parse_table[] = { [10034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1030), 22, + ACTIONS(1108), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -33815,7 +37705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1032), 32, + ACTIONS(1110), 32, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -33851,7 +37741,7 @@ static const uint16_t ts_small_parse_table[] = { [10096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1034), 22, + ACTIONS(1104), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -33874,7 +37764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1036), 32, + ACTIONS(1106), 32, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -33910,13 +37800,13 @@ static const uint16_t ts_small_parse_table[] = { [10158] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(665), 1, + ACTIONS(177), 1, anon_sym_EQ_GT, - ACTIONS(707), 1, - anon_sym_COLON, - ACTIONS(709), 1, + ACTIONS(397), 1, anon_sym_EQ, - ACTIONS(641), 15, + ACTIONS(407), 1, + anon_sym_COLON, + ACTIONS(155), 15, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, @@ -33932,7 +37822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(667), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -33948,7 +37838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(652), 21, + ACTIONS(151), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33970,10 +37860,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10228] = 3, + [10228] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1042), 22, + ACTIONS(1088), 1, + anon_sym_EQ_GT, + ACTIONS(1118), 1, + anon_sym_in, + ACTIONS(1121), 1, + anon_sym_of, + ACTIONS(1123), 1, + anon_sym_EQ, + ACTIONS(1081), 15, + sym__automatic_semicolon, + 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(1090), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1079), 20, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10300] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1092), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -33996,7 +37950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1044), 32, + ACTIONS(1094), 32, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -34029,12 +37983,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10290] = 5, + [10362] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1050), 1, + ACTIONS(407), 1, + anon_sym_COLON, + ACTIONS(1088), 1, + anon_sym_EQ_GT, + ACTIONS(1123), 1, anon_sym_EQ, - ACTIONS(1028), 15, + ACTIONS(1081), 15, + sym__automatic_semicolon, + 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(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34050,25 +38024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1019), 17, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1017), 21, + ACTIONS(1079), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34090,14 +38046,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10356] = 6, + [10432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(665), 1, - anon_sym_EQ_GT, - ACTIONS(762), 1, + ACTIONS(1096), 22, + anon_sym_STAR, + anon_sym_in, anon_sym_EQ, - ACTIONS(667), 15, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1098), 32, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34113,15 +38097,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(641), 16, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -34130,41 +38105,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(652), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10424] = 7, + [10494] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(760), 1, + ACTIONS(332), 1, anon_sym_EQ_GT, - ACTIONS(783), 1, + ACTIONS(402), 1, anon_sym_EQ, - ACTIONS(780), 4, + ACTIONS(399), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(641), 12, + ACTIONS(155), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -34177,7 +38130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(667), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34193,7 +38146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(652), 21, + ACTIONS(151), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34215,20 +38168,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10494] = 7, + [10564] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1052), 1, + ACTIONS(405), 1, + anon_sym_COLON, + ACTIONS(1088), 1, anon_sym_EQ_GT, - ACTIONS(1061), 1, + ACTIONS(1123), 1, anon_sym_EQ, - ACTIONS(1058), 4, + ACTIONS(1081), 15, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1019), 12, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -34240,7 +38193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1028), 15, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34256,7 +38209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1017), 21, + ACTIONS(1079), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34278,14 +38231,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10564] = 6, + [10634] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(665), 1, + ACTIONS(1088), 1, anon_sym_EQ_GT, - ACTIONS(709), 1, + ACTIONS(1123), 1, anon_sym_EQ, - ACTIONS(667), 15, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34301,7 +38254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(641), 16, + ACTIONS(1081), 16, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -34318,7 +38271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(652), 21, + ACTIONS(1079), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34340,14 +38293,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10632] = 6, + [10702] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1026), 1, + ACTIONS(1116), 1, anon_sym_EQ_GT, - ACTIONS(1056), 1, + ACTIONS(1128), 1, anon_sym_EQ, - ACTIONS(1028), 15, + ACTIONS(1125), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1081), 12, + 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(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34363,24 +38334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1019), 16, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(1017), 21, + ACTIONS(1079), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34402,42 +38356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10700] = 3, + [10772] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1046), 22, - anon_sym_STAR, - anon_sym_in, + ACTIONS(1114), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1048), 32, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34453,31 +38377,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [10762] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(665), 1, - anon_sym_EQ_GT, - ACTIONS(709), 1, - anon_sym_EQ, - ACTIONS(786), 1, - anon_sym_in, - ACTIONS(1064), 1, - anon_sym_of, - ACTIONS(641), 15, - sym__automatic_semicolon, + ACTIONS(1081), 17, 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, @@ -34488,24 +38395,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(667), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(652), 20, + ACTIONS(1079), 21, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -34525,18 +38417,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10834] = 8, + [10838] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1026), 1, + ACTIONS(177), 1, anon_sym_EQ_GT, - ACTIONS(1056), 1, - anon_sym_EQ, - ACTIONS(1066), 1, + ACTIONS(392), 1, anon_sym_in, - ACTIONS(1069), 1, + ACTIONS(397), 1, + anon_sym_EQ, + ACTIONS(1131), 1, anon_sym_of, - ACTIONS(1019), 15, + ACTIONS(155), 15, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, @@ -34552,7 +38444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1028), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34568,7 +38460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1017), 20, + ACTIONS(151), 20, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -34589,10 +38481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10906] = 3, + [10910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1073), 14, + ACTIONS(1135), 14, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -34607,7 +38499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1071), 39, + ACTIONS(1133), 39, anon_sym_export, anon_sym_import, anon_sym_var, @@ -34647,70 +38539,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10967] = 3, + [10971] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 14, - anon_sym_LBRACE, + ACTIONS(1118), 1, + anon_sym_in, + ACTIONS(1121), 1, + anon_sym_of, + ACTIONS(1123), 1, + anon_sym_EQ, + ACTIONS(1081), 15, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_BANG, - 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_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(1075), 39, - anon_sym_export, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - 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_get, - anon_sym_set, - [11028] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1054), 1, - anon_sym_EQ, - ACTIONS(1028), 15, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34726,26 +38580,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(1019), 16, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(1017), 21, + ACTIONS(1079), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -34765,32 +38601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11093] = 7, + [11040] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1056), 1, + ACTIONS(1123), 1, anon_sym_EQ, - ACTIONS(1066), 1, - anon_sym_in, - ACTIONS(1069), 1, - anon_sym_of, - ACTIONS(1019), 15, - sym__automatic_semicolon, - 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(1028), 15, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34806,8 +38622,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(1017), 20, + ACTIONS(1081), 16, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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(1079), 21, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -34827,10 +38661,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11162] = 3, + [11105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1081), 14, + ACTIONS(1139), 14, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -34845,7 +38679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1079), 39, + ACTIONS(1137), 39, anon_sym_export, anon_sym_import, anon_sym_var, @@ -34885,10 +38719,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11223] = 3, + [11166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1036), 14, + ACTIONS(1143), 14, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -34903,7 +38737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(1034), 39, + ACTIONS(1141), 39, anon_sym_export, anon_sym_import, anon_sym_var, @@ -34943,12 +38777,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [11284] = 5, + [11227] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1056), 1, + ACTIONS(1112), 1, anon_sym_EQ, - ACTIONS(1028), 15, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34964,7 +38798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1019), 16, + ACTIONS(1081), 16, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -34981,7 +38815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1017), 21, + ACTIONS(1079), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35003,77 +38837,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11349] = 6, + [11292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, - anon_sym_EQ, - ACTIONS(1083), 1, - anon_sym_EQ_GT, - ACTIONS(1019), 14, + ACTIONS(1098), 14, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(1096), 39, + anon_sym_export, + anon_sym_import, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_with, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_SLASH, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_typeof, + 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_get, + anon_sym_set, + [11353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 23, + anon_sym_export, + anon_sym_STAR, + anon_sym_await, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_DOT, + anon_sym_class, + anon_sym_async, + anon_sym_QMARK, + 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_instanceof, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1147), 29, + 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_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, + anon_sym_QMARK_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - ACTIONS(1028), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1017), 21, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + [11413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 23, + anon_sym_export, anon_sym_STAR, + anon_sym_await, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_instanceof, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1151), 29, + 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_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [11415] = 6, + 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, + [11473] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(762), 1, - anon_sym_EQ, - ACTIONS(795), 1, + ACTIONS(332), 1, anon_sym_EQ_GT, - ACTIONS(641), 14, - anon_sym_LBRACE, + ACTIONS(399), 1, + anon_sym_RBRACK, + ACTIONS(402), 1, + anon_sym_EQ, + ACTIONS(431), 1, + anon_sym_COMMA, + ACTIONS(155), 12, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -35085,7 +39033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(667), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35101,7 +39049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(652), 21, + ACTIONS(151), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35123,18 +39071,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11481] = 8, + [11543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1052), 1, + ACTIONS(1153), 23, + anon_sym_export, + anon_sym_STAR, + anon_sym_await, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, + anon_sym_QMARK, + 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_instanceof, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1155), 29, + 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_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + 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_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + [11603] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, anon_sym_EQ_GT, - ACTIONS(1058), 1, + ACTIONS(1125), 1, anon_sym_RBRACK, - ACTIONS(1061), 1, + ACTIONS(1128), 1, anon_sym_EQ, - ACTIONS(1085), 1, + ACTIONS(1157), 1, anon_sym_COMMA, - ACTIONS(1019), 12, + ACTIONS(1081), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -35147,7 +39152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1028), 15, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35163,7 +39168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1017), 21, + ACTIONS(1079), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35185,18 +39190,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11551] = 8, + [11673] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(760), 1, + ACTIONS(1116), 1, anon_sym_EQ_GT, - ACTIONS(780), 1, - anon_sym_RBRACK, - ACTIONS(783), 1, + ACTIONS(1162), 1, anon_sym_EQ, - ACTIONS(801), 1, + ACTIONS(1159), 2, anon_sym_COMMA, - ACTIONS(641), 12, + anon_sym_RBRACK, + ACTIONS(1081), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -35209,7 +39213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(667), 15, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35225,7 +39229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(652), 21, + ACTIONS(1079), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35247,17 +39251,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11621] = 7, + [11741] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1050), 1, + ACTIONS(1114), 1, anon_sym_EQ, - ACTIONS(1052), 1, + ACTIONS(1116), 1, anon_sym_EQ_GT, - ACTIONS(1087), 2, + ACTIONS(1159), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1019), 12, + ACTIONS(1081), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -35270,7 +39274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1028), 15, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35286,7 +39290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1017), 21, + ACTIONS(1079), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35308,18 +39312,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11689] = 7, + [11809] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1052), 1, - anon_sym_EQ_GT, - ACTIONS(1090), 1, + ACTIONS(1112), 1, anon_sym_EQ, - ACTIONS(1087), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1019), 12, + ACTIONS(1164), 1, + anon_sym_EQ_GT, + ACTIONS(1081), 13, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -35331,7 +39333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1028), 15, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35347,7 +39349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1017), 21, + ACTIONS(1079), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35369,186 +39371,373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11757] = 3, + [11874] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1092), 22, - anon_sym_export, + ACTIONS(1112), 1, + anon_sym_EQ, + ACTIONS(1166), 1, + anon_sym_EQ_GT, + ACTIONS(1081), 13, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1090), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1079), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_DOT, - anon_sym_class, - anon_sym_async, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1094), 29, + anon_sym_QMARK_QMARK, + [11939] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1166), 1, + anon_sym_EQ_GT, + ACTIONS(1168), 1, + anon_sym_EQ, + ACTIONS(1081), 13, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1090), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1079), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12004] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + anon_sym_EQ, + ACTIONS(392), 1, + anon_sym_in, + ACTIONS(457), 1, + anon_sym_EQ_GT, + ACTIONS(1131), 1, + anon_sym_of, + ACTIONS(155), 12, + 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_QMARK_QMARK, + 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, - [11816] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1096), 22, - anon_sym_export, + ACTIONS(179), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(151), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_DOT, - anon_sym_class, - anon_sym_async, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1098), 29, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_QMARK_QMARK, + [12073] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + anon_sym_EQ, + ACTIONS(457), 1, + anon_sym_EQ_GT, + ACTIONS(155), 13, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(179), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(151), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12138] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1112), 1, + anon_sym_EQ, + ACTIONS(1118), 1, + anon_sym_in, + ACTIONS(1121), 1, + anon_sym_of, + ACTIONS(1164), 1, + anon_sym_EQ_GT, + ACTIONS(1081), 12, + 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_QMARK_QMARK, + 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, - [11875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1100), 22, - anon_sym_export, + ACTIONS(1090), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1079), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_DOT, - anon_sym_class, - anon_sym_async, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1102), 29, + anon_sym_QMARK_QMARK, + [12207] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(467), 1, + anon_sym_EQ, + ACTIONS(471), 1, + anon_sym_EQ_GT, + ACTIONS(155), 13, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(179), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(151), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - 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, - [11934] = 8, + [12272] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(362), 1, anon_sym_EQ, - ACTIONS(1066), 1, - anon_sym_in, - ACTIONS(1069), 1, - anon_sym_of, - ACTIONS(1083), 1, + ACTIONS(471), 1, anon_sym_EQ_GT, - ACTIONS(1019), 12, + ACTIONS(155), 13, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -35561,7 +39750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1028), 15, + ACTIONS(179), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35577,8 +39766,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(1017), 20, + ACTIONS(151), 21, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -35598,18 +39788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12003] = 8, + [12337] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(762), 1, + ACTIONS(1168), 1, anon_sym_EQ, - ACTIONS(786), 1, - anon_sym_in, - ACTIONS(795), 1, - anon_sym_EQ_GT, - ACTIONS(1064), 1, - anon_sym_of, - ACTIONS(641), 12, + ACTIONS(1081), 13, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -35622,7 +39807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(667), 15, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35638,8 +39823,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(652), 20, + ACTIONS(1079), 21, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -35659,16 +39845,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12072] = 7, + [12399] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1112), 1, anon_sym_EQ, - ACTIONS(1066), 1, + ACTIONS(1118), 1, anon_sym_in, - ACTIONS(1069), 1, + ACTIONS(1121), 1, anon_sym_of, - ACTIONS(1019), 12, + ACTIONS(1081), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -35681,7 +39867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1028), 15, + ACTIONS(1090), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35697,7 +39883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1017), 20, + ACTIONS(1079), 20, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -35718,27 +39904,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12138] = 11, + [12465] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(75), 1, anon_sym_DQUOTE, ACTIONS(77), 1, anon_sym_SQUOTE, - ACTIONS(1104), 1, + ACTIONS(1170), 1, sym_identifier, - ACTIONS(1106), 1, + ACTIONS(1172), 1, anon_sym_STAR, - ACTIONS(1108), 1, + ACTIONS(1174), 1, anon_sym_LBRACE, - STATE(1162), 1, - sym_string, - STATE(1166), 1, + STATE(1232), 1, sym_import_clause, - STATE(1359), 2, + STATE(1235), 1, + sym_string, + STATE(1418), 2, sym_namespace_import, sym_named_imports, - ACTIONS(1112), 13, + ACTIONS(1178), 13, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -35752,7 +39938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_instanceof, - ACTIONS(1110), 22, + ACTIONS(1176), 22, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, @@ -35775,23 +39961,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12206] = 9, + [12533] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - STATE(454), 2, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1114), 13, + ACTIONS(1180), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35805,7 +39994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1116), 21, + ACTIONS(1182), 19, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -35825,16 +40014,26 @@ 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, - [12267] = 5, + [12596] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(436), 1, - anon_sym_EQ, - ACTIONS(1126), 1, - sym__automatic_semicolon, - ACTIONS(430), 13, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1194), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35848,17 +40047,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(428), 26, + ACTIONS(1196), 19, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -35872,29 +40067,66 @@ 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, - [12320] = 10, + [12659] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1128), 13, + ACTIONS(1198), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1200), 21, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [12720] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(523), 1, + anon_sym_EQ, + ACTIONS(1202), 1, + sym__automatic_semicolon, + ACTIONS(517), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35908,13 +40140,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1130), 19, + ACTIONS(515), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -35928,26 +40164,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [12383] = 10, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [12773] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1128), 13, + ACTIONS(1194), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35961,7 +40200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1130), 19, + ACTIONS(1196), 19, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -35981,26 +40220,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [12446] = 10, + [12836] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1132), 2, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(1212), 1, + anon_sym_QMARK, + ACTIONS(1214), 1, + anon_sym_AMP_AMP, + ACTIONS(1220), 1, + anon_sym_AMP, + ACTIONS(1222), 1, + anon_sym_PIPE, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1230), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(454), 2, + ACTIONS(1216), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1224), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1134), 13, + ACTIONS(1204), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1218), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1210), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1206), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1228), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [12922] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1112), 1, + anon_sym_EQ, + ACTIONS(1079), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -36014,13 +40303,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1136), 19, + ACTIONS(1081), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -36034,17 +40327,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [12509] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [12972] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 1, - anon_sym_EQ, - ACTIONS(1142), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1138), 13, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1236), 1, + anon_sym_QMARK_DOT, + STATE(484), 1, + sym_arguments, + ACTIONS(1232), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -36058,13 +40357,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1140), 22, + ACTIONS(1234), 22, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - 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, @@ -36081,777 +40380,514 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12561] = 22, + [13030] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1149), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [12647] = 21, + ACTIONS(1238), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [13116] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1134), 1, - anon_sym_QMARK, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1157), 1, + ACTIONS(1212), 1, + anon_sym_QMARK, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1132), 2, + ACTIONS(1230), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1136), 6, + ACTIONS(1240), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - [12731] = 22, + [13202] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1175), 5, + ACTIONS(1242), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [12817] = 8, + [13288] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1181), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - STATE(480), 1, - sym_arguments, - ACTIONS(1177), 13, - anon_sym_STAR, + ACTIONS(1208), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1212), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1214), 1, + anon_sym_AMP_AMP, + ACTIONS(1220), 1, anon_sym_AMP, + ACTIONS(1222), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1179), 22, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [12875] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1190), 1, - anon_sym_EQ, - ACTIONS(1187), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1183), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1185), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [12927] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1161), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1134), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1136), 14, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, + ACTIONS(1216), 2, 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, - [12995] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1151), 1, - anon_sym_in, - ACTIONS(1157), 1, - anon_sym_AMP_AMP, - ACTIONS(1163), 1, - anon_sym_AMP, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1134), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1136), 8, + ACTIONS(1244), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [13075] = 22, + [13374] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1192), 5, + ACTIONS(1246), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [13161] = 22, + [13460] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1194), 5, + ACTIONS(1248), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [13247] = 22, + [13546] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1151), 1, - anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1180), 1, anon_sym_QMARK, - ACTIONS(1157), 1, - anon_sym_AMP_AMP, - ACTIONS(1163), 1, - anon_sym_AMP, - ACTIONS(1165), 1, - anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1159), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1167), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1161), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1153), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1171), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1196), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [13333] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, - anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1198), 5, + ACTIONS(1182), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [13419] = 17, + anon_sym_QMARK_QMARK, + [13630] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, - anon_sym_in, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1167), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1134), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1171), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1136), 9, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [13495] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1126), 1, - sym__automatic_semicolon, - ACTIONS(430), 13, - anon_sym_STAR, + ACTIONS(1180), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(428), 26, - anon_sym_LBRACE, + ACTIONS(1182), 14, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13545] = 4, + [13698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, - anon_sym_EQ, - ACTIONS(1017), 13, + ACTIONS(1250), 1, + sym__automatic_semicolon, + ACTIONS(529), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -36865,7 +40901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1019), 26, + ACTIONS(527), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -36892,103 +40928,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13595] = 22, + [13748] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, - anon_sym_QMARK, - ACTIONS(1157), 1, - anon_sym_AMP_AMP, - ACTIONS(1163), 1, - anon_sym_AMP, - ACTIONS(1165), 1, - anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1180), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1200), 5, + ACTIONS(1182), 9, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [13681] = 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [13824] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1134), 8, + ACTIONS(1180), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -36997,7 +41028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1136), 14, + ACTIONS(1182), 14, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -37012,119 +41043,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [13751] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1151), 1, - anon_sym_in, - ACTIONS(1155), 1, - anon_sym_QMARK, - ACTIONS(1157), 1, - anon_sym_AMP_AMP, - ACTIONS(1163), 1, - anon_sym_AMP, - ACTIONS(1165), 1, - anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1159), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1167), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1161), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1153), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1171), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1202), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [13837] = 16, + [13894] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1134), 4, + ACTIONS(1180), 4, anon_sym_in, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1136), 9, + ACTIONS(1182), 9, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -37134,81 +41101,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - [13911] = 22, + [13968] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1204), 5, + ACTIONS(1252), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [13997] = 5, + [14054] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(436), 1, + ACTIONS(1261), 1, anon_sym_EQ, - ACTIONS(1206), 4, + ACTIONS(1258), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(432), 13, + ACTIONS(1254), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37222,7 +41189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(434), 22, + ACTIONS(1256), 22, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COLON, @@ -37245,93 +41212,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14049] = 23, + [14106] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1209), 1, - anon_sym_COMMA, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1211), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [14137] = 11, + ACTIONS(1263), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [14192] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1169), 1, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(1212), 1, + anon_sym_QMARK, + ACTIONS(1214), 1, + anon_sym_AMP_AMP, + ACTIONS(1220), 1, + anon_sym_AMP, + ACTIONS(1222), 1, + anon_sym_PIPE, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1132), 2, + ACTIONS(1230), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1265), 1, + anon_sym_COMMA, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(454), 2, + ACTIONS(1216), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1224), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1134), 13, + ACTIONS(1204), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1218), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1210), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1267), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1228), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [14280] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(523), 1, + anon_sym_EQ, + ACTIONS(1269), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(519), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37345,30 +41365,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1136), 17, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(521), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [14201] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [14332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 1, - sym__automatic_semicolon, - ACTIONS(442), 13, + ACTIONS(1276), 1, + sym_regex_flags, + ACTIONS(1272), 14, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37382,7 +41407,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(440), 26, + anon_sym_instanceof, + ACTIONS(1274), 25, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -37405,272 +41431,193 @@ 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, - [14251] = 22, + [14382] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, - anon_sym_in, - ACTIONS(1155), 1, - anon_sym_QMARK, - ACTIONS(1157), 1, - anon_sym_AMP_AMP, - ACTIONS(1163), 1, - anon_sym_AMP, - ACTIONS(1165), 1, - anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1167), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1180), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1161), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1153), 4, + anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1171), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1215), 5, + ACTIONS(1182), 17, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [14337] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1151), 1, - anon_sym_in, - ACTIONS(1155), 1, - anon_sym_QMARK, - ACTIONS(1157), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, - anon_sym_AMP, - ACTIONS(1165), 1, - anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1159), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1167), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1161), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1153), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1171), 5, anon_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(1217), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [14423] = 22, + [14446] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1219), 5, + ACTIONS(1278), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [14509] = 22, + [14532] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, - anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, - anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1180), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1221), 5, + ACTIONS(1182), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [14595] = 4, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [14612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1227), 1, - sym_regex_flags, - ACTIONS(1223), 14, + ACTIONS(1202), 1, + sym__automatic_semicolon, + ACTIONS(517), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37684,8 +41631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1225), 25, + ACTIONS(515), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -37708,76 +41654,85 @@ 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, - [14645] = 22, + [14662] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, - anon_sym_in, - ACTIONS(1235), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1243), 1, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1245), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1251), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1253), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1257), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1261), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1247), 2, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1255), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1263), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(554), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1229), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1249), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1198), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1237), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1259), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [14730] = 3, + ACTIONS(1280), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [14748] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1112), 13, + ACTIONS(1289), 1, + anon_sym_EQ, + ACTIONS(1286), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1282), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37791,15 +41746,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1110), 26, + ACTIONS(1284), 22, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -37818,54 +41769,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14777] = 3, + [14800] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1265), 13, - anon_sym_STAR, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1208), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1212), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1214), 1, + anon_sym_AMP_AMP, + ACTIONS(1220), 1, anon_sym_AMP, + ACTIONS(1222), 1, anon_sym_PIPE, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1230), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1216), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1204), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1218), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1210), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1267), 26, - anon_sym_LBRACE, + ACTIONS(1228), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1291), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [14886] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, anon_sym_DOT, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(1212), 1, + anon_sym_QMARK, + ACTIONS(1214), 1, anon_sym_AMP_AMP, + ACTIONS(1220), 1, + anon_sym_AMP, + ACTIONS(1222), 1, + anon_sym_PIPE, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1230), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1224), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1204), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1210), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14824] = 3, + ACTIONS(1293), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [14972] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1269), 13, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1236), 1, + anon_sym_QMARK_DOT, + ACTIONS(1295), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37879,17 +41920,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1198), 26, + ACTIONS(1297), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -37906,10 +41944,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14871] = 3, + [15025] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1271), 13, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1301), 1, + anon_sym_LPAREN, + ACTIONS(1303), 1, + anon_sym_in, + ACTIONS(1305), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, + anon_sym_DOT, + ACTIONS(1311), 1, + anon_sym_QMARK_DOT, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1321), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(611), 2, + sym_template_string, + sym_arguments, + ACTIONS(1180), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1299), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1313), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1307), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1319), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1182), 8, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [15100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(575), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37923,7 +42019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1219), 26, + ACTIONS(577), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -37950,10 +42046,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14918] = 3, + [15147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(526), 13, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37967,7 +42063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(528), 26, + ACTIONS(601), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -37994,10 +42090,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14965] = 3, + [15194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1273), 13, + ACTIONS(1323), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38011,7 +42107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1275), 26, + ACTIONS(1325), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38038,136 +42134,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15012] = 22, + [15241] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(1303), 1, anon_sym_in, - ACTIONS(1235), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1243), 1, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, anon_sym_QMARK, - ACTIONS(1245), 1, + ACTIONS(1329), 1, anon_sym_AMP_AMP, - ACTIONS(1251), 1, + ACTIONS(1333), 1, anon_sym_AMP, - ACTIONS(1253), 1, + ACTIONS(1335), 1, anon_sym_PIPE, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1261), 1, + ACTIONS(1337), 1, anon_sym_QMARK_QMARK, - ACTIONS(1247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1255), 2, + ACTIONS(1315), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1263), 2, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(554), 2, - sym_template_string, - sym_arguments, - ACTIONS(1229), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1249), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1217), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1237), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1259), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [15097] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1231), 1, - anon_sym_LPAREN, - ACTIONS(1233), 1, - anon_sym_in, - ACTIONS(1235), 1, - anon_sym_LBRACK, - ACTIONS(1239), 1, - anon_sym_DOT, - ACTIONS(1241), 1, - anon_sym_QMARK_DOT, - ACTIONS(1243), 1, - anon_sym_QMARK, - ACTIONS(1245), 1, - anon_sym_AMP_AMP, - ACTIONS(1251), 1, - anon_sym_AMP, - ACTIONS(1253), 1, - anon_sym_PIPE, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1261), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1247), 2, + ACTIONS(1331), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1255), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1263), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(554), 2, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1229), 3, + ACTIONS(1299), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1249), 3, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1215), 4, + ACTIONS(1248), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1237), 4, + ACTIONS(1307), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1259), 5, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [15182] = 3, + [15326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 13, + ACTIONS(535), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38181,7 +42214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1279), 26, + ACTIONS(537), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38208,62 +42241,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15229] = 11, + [15373] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1235), 1, + ACTIONS(1303), 1, + anon_sym_in, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1257), 1, + ACTIONS(1317), 1, anon_sym_STAR_STAR, - ACTIONS(1263), 2, + ACTIONS(1327), 1, + anon_sym_QMARK, + ACTIONS(1329), 1, + anon_sym_AMP_AMP, + ACTIONS(1333), 1, + anon_sym_AMP, + ACTIONS(1335), 1, + anon_sym_PIPE, + ACTIONS(1337), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(554), 2, + ACTIONS(1331), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1134), 13, + ACTIONS(1299), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(1136), 16, + ACTIONS(1313), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1242), 4, sym__automatic_semicolon, 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, + ACTIONS(1307), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [15292] = 3, + [15458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(520), 13, + ACTIONS(1339), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38277,7 +42321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(518), 26, + ACTIONS(1341), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38304,73 +42348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15339] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1231), 1, - anon_sym_LPAREN, - ACTIONS(1233), 1, - anon_sym_in, - ACTIONS(1235), 1, - anon_sym_LBRACK, - ACTIONS(1239), 1, - anon_sym_DOT, - ACTIONS(1241), 1, - anon_sym_QMARK_DOT, - ACTIONS(1243), 1, - anon_sym_QMARK, - ACTIONS(1245), 1, - anon_sym_AMP_AMP, - ACTIONS(1251), 1, - anon_sym_AMP, - ACTIONS(1253), 1, - anon_sym_PIPE, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1261), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1255), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1263), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(554), 2, - sym_template_string, - sym_arguments, - ACTIONS(1229), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1249), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1202), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1237), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1259), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [15424] = 3, + [15505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 13, + ACTIONS(1343), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38384,7 +42365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1283), 26, + ACTIONS(1345), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38411,10 +42392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15471] = 3, + [15552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 13, + ACTIONS(1347), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38428,7 +42409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1287), 26, + ACTIONS(1349), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38455,10 +42436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15518] = 3, + [15599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 13, + ACTIONS(1351), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38472,7 +42453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1291), 26, + ACTIONS(1353), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38499,10 +42480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15565] = 3, + [15646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(492), 13, + ACTIONS(1355), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38516,7 +42497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(494), 26, + ACTIONS(1357), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38543,67 +42524,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15612] = 16, + [15693] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1235), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1257), 1, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(1212), 1, + anon_sym_QMARK, + ACTIONS(1214), 1, + anon_sym_AMP_AMP, + ACTIONS(1220), 1, + anon_sym_AMP, + ACTIONS(1222), 1, + anon_sym_PIPE, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1255), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1263), 2, + ACTIONS(1230), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(554), 2, + ACTIONS(1216), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1224), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1229), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1249), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1134), 4, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1237), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1259), 5, + ACTIONS(1359), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1136), 8, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [15685] = 3, + [15778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(512), 13, + ACTIONS(1361), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38617,7 +42604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(514), 26, + ACTIONS(1363), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38644,10 +42631,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15732] = 3, + [15825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(462), 13, + ACTIONS(1365), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38661,7 +42648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(464), 26, + ACTIONS(1367), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -38688,65 +42675,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15779] = 14, + [15872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1231), 1, - anon_sym_LPAREN, - ACTIONS(1235), 1, - anon_sym_LBRACK, - ACTIONS(1239), 1, - anon_sym_DOT, - ACTIONS(1241), 1, - anon_sym_QMARK_DOT, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1255), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1263), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(554), 2, - sym_template_string, - sym_arguments, - ACTIONS(1229), 3, + ACTIONS(555), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1249), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1134), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(1136), 13, - sym__automatic_semicolon, + ACTIONS(557), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [15848] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [15919] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 13, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1301), 1, + anon_sym_LPAREN, + ACTIONS(1305), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, + anon_sym_DOT, + ACTIONS(1311), 1, + anon_sym_QMARK_DOT, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1321), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(611), 2, + sym_template_string, + sym_arguments, + ACTIONS(1180), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38760,288 +42754,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1295), 26, - anon_sym_LBRACE, + ACTIONS(1182), 16, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15895] = 22, + [15982] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1303), 1, + anon_sym_in, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, - anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1329), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1333), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1335), 1, anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1337), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1331), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1299), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1280), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1307), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1297), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1171), 5, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [15980] = 17, + [16067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1231), 1, - anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(1369), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1235), 1, - anon_sym_LBRACK, - ACTIONS(1239), 1, - anon_sym_DOT, - ACTIONS(1241), 1, - anon_sym_QMARK_DOT, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1255), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1263), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(554), 2, - sym_template_string, - sym_arguments, - ACTIONS(1134), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1229), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1249), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1371), 26, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1237), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1259), 5, + anon_sym_STAR_STAR, anon_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(1136), 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1343), 14, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1345), 25, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + 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, - [16055] = 19, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16161] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(1303), 1, anon_sym_in, - ACTIONS(1235), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1245), 1, - anon_sym_AMP_AMP, - ACTIONS(1251), 1, - anon_sym_AMP, - ACTIONS(1257), 1, + ACTIONS(1317), 1, anon_sym_STAR_STAR, - ACTIONS(1134), 2, + ACTIONS(1327), 1, anon_sym_QMARK, + ACTIONS(1329), 1, + anon_sym_AMP_AMP, + ACTIONS(1333), 1, + anon_sym_AMP, + ACTIONS(1335), 1, anon_sym_PIPE, - ACTIONS(1255), 2, + ACTIONS(1337), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1315), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1263), 2, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(554), 2, + ACTIONS(1331), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1229), 3, + ACTIONS(1299), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1249), 3, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1237), 4, + ACTIONS(1246), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1307), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1259), 5, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1136), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [16134] = 13, + [16246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1231), 1, - anon_sym_LPAREN, - ACTIONS(1235), 1, - anon_sym_LBRACK, - ACTIONS(1239), 1, - anon_sym_DOT, - ACTIONS(1241), 1, - anon_sym_QMARK_DOT, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1263), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(554), 2, - sym_template_string, - sym_arguments, - ACTIONS(1229), 3, + ACTIONS(1373), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1249), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1134), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(1136), 13, - sym__automatic_semicolon, + ACTIONS(1375), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [16201] = 10, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16293] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1235), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1263), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(554), 2, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1134), 13, + ACTIONS(1198), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39055,7 +43059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1136), 17, + ACTIONS(1200), 19, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -39073,72 +43077,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [16262] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1134), 1, - anon_sym_QMARK, - ACTIONS(1231), 1, - anon_sym_LPAREN, - ACTIONS(1233), 1, - anon_sym_in, - ACTIONS(1235), 1, - anon_sym_LBRACK, - ACTIONS(1239), 1, - anon_sym_DOT, - ACTIONS(1241), 1, - anon_sym_QMARK_DOT, - ACTIONS(1245), 1, - anon_sym_AMP_AMP, - ACTIONS(1251), 1, - anon_sym_AMP, - ACTIONS(1253), 1, - anon_sym_PIPE, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1255), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1263), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(554), 2, - sym_template_string, - sym_arguments, - ACTIONS(1229), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1249), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1237), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1136), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - ACTIONS(1259), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [16345] = 3, + [16352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1299), 13, + ACTIONS(583), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39152,7 +43096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1301), 26, + ACTIONS(581), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39179,10 +43123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16392] = 3, + [16399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1303), 13, + ACTIONS(1079), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39196,7 +43140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1305), 26, + ACTIONS(1081), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39223,10 +43167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16439] = 3, + [16446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1307), 13, + ACTIONS(611), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39240,7 +43184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1309), 26, + ACTIONS(613), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39267,73 +43211,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16486] = 22, + [16493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1231), 1, - anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(1178), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1235), 1, - anon_sym_LBRACK, - ACTIONS(1239), 1, - anon_sym_DOT, - ACTIONS(1241), 1, - anon_sym_QMARK_DOT, - ACTIONS(1243), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1245), 1, - anon_sym_AMP_AMP, - ACTIONS(1251), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1253), 1, anon_sym_PIPE, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1261), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1255), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1263), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(554), 2, - sym_template_string, - sym_arguments, - ACTIONS(1229), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1249), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1176), 26, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1192), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1237), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1259), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [16571] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1311), 13, + ACTIONS(1377), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39347,7 +43272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1313), 26, + ACTIONS(1379), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39374,10 +43299,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16618] = 3, + [16587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1315), 13, + ACTIONS(1114), 1, + anon_sym_EQ, + ACTIONS(1079), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39391,8 +43318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1317), 26, - anon_sym_LBRACE, + ACTIONS(1081), 25, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -39418,73 +43344,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16665] = 22, + [16636] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(1303), 1, anon_sym_in, - ACTIONS(1235), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1243), 1, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, anon_sym_QMARK, - ACTIONS(1245), 1, + ACTIONS(1329), 1, anon_sym_AMP_AMP, - ACTIONS(1251), 1, + ACTIONS(1333), 1, anon_sym_AMP, - ACTIONS(1253), 1, + ACTIONS(1335), 1, anon_sym_PIPE, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1261), 1, + ACTIONS(1337), 1, anon_sym_QMARK_QMARK, - ACTIONS(1247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1255), 2, + ACTIONS(1381), 1, + anon_sym_COMMA, + ACTIONS(1384), 1, + anon_sym_RBRACE, + ACTIONS(1278), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1315), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1263), 2, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(554), 2, + ACTIONS(1331), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1229), 3, + ACTIONS(1299), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1249), 3, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1200), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1237), 4, + ACTIONS(1307), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1259), 5, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [16750] = 3, + [16725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1319), 13, + ACTIONS(621), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39498,7 +43426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1321), 26, + ACTIONS(623), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39525,73 +43453,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16797] = 22, + [16772] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, - anon_sym_in, - ACTIONS(1235), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1243), 1, - anon_sym_QMARK, - ACTIONS(1245), 1, - anon_sym_AMP_AMP, - ACTIONS(1251), 1, - anon_sym_AMP, - ACTIONS(1253), 1, - anon_sym_PIPE, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1261), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1255), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1263), 2, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(554), 2, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1229), 3, + ACTIONS(1194), 13, anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(1249), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1149), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1196), 17, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1237), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1259), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [16882] = 3, + [16833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1323), 13, + ACTIONS(523), 1, + anon_sym_EQ, + ACTIONS(519), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39605,8 +43523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1325), 26, - anon_sym_LBRACE, + ACTIONS(521), 25, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -39632,10 +43549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16929] = 3, + [16882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1327), 13, + ACTIONS(1386), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39649,7 +43566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1329), 26, + ACTIONS(1388), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39676,10 +43593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16976] = 3, + [16929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(538), 13, + ACTIONS(529), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39693,7 +43610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(536), 26, + ACTIONS(527), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39720,10 +43637,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17023] = 3, + [16976] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1301), 1, + anon_sym_LPAREN, + ACTIONS(1303), 1, + anon_sym_in, + ACTIONS(1305), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, + anon_sym_DOT, + ACTIONS(1311), 1, + anon_sym_QMARK_DOT, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, + anon_sym_QMARK, + ACTIONS(1329), 1, + anon_sym_AMP_AMP, + ACTIONS(1333), 1, + anon_sym_AMP, + ACTIONS(1335), 1, + anon_sym_PIPE, + ACTIONS(1337), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1384), 1, + anon_sym_RBRACE, + ACTIONS(1390), 1, + anon_sym_COMMA, + ACTIONS(1240), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1321), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1331), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(611), 2, + sym_template_string, + sym_arguments, + ACTIONS(1299), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1313), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1307), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1319), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [17065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1331), 13, + ACTIONS(1393), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39737,7 +43719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1333), 26, + ACTIONS(1280), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39764,73 +43746,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17070] = 22, + [17112] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(1303), 1, anon_sym_in, - ACTIONS(1235), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1243), 1, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, anon_sym_QMARK, - ACTIONS(1245), 1, + ACTIONS(1329), 1, anon_sym_AMP_AMP, - ACTIONS(1251), 1, + ACTIONS(1333), 1, anon_sym_AMP, - ACTIONS(1253), 1, + ACTIONS(1335), 1, anon_sym_PIPE, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1261), 1, + ACTIONS(1337), 1, anon_sym_QMARK_QMARK, - ACTIONS(1247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1255), 2, + ACTIONS(1395), 1, + anon_sym_COMMA, + ACTIONS(1398), 1, + anon_sym_RBRACE, + ACTIONS(1240), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1315), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1263), 2, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(554), 2, + ACTIONS(1331), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1229), 3, + ACTIONS(1299), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1249), 3, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1194), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1237), 4, + ACTIONS(1307), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1259), 5, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [17155] = 3, + [17201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1335), 13, + ACTIONS(1400), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39844,7 +43828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1337), 26, + ACTIONS(1291), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -39871,12 +43855,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17202] = 4, + [17248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, - anon_sym_EQ, - ACTIONS(1183), 13, + ACTIONS(589), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39890,7 +43872,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1185), 25, + ACTIONS(591), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -39916,10 +43899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17251] = 3, + [17295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1339), 13, + ACTIONS(1289), 1, + anon_sym_EQ, + ACTIONS(1282), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39933,8 +43918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1341), 26, - anon_sym_LBRACE, + ACTIONS(1284), 25, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -39960,12 +43944,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17298] = 4, + [17344] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 1, + ACTIONS(1261), 1, anon_sym_EQ, - ACTIONS(1138), 13, + ACTIONS(1254), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39979,7 +43963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1140), 25, + ACTIONS(1256), 25, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -40005,10 +43989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17347] = 3, + [17393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1343), 13, + ACTIONS(569), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40022,7 +44006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1149), 26, + ACTIONS(567), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40049,10 +44033,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17394] = 3, + [17440] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1301), 1, + anon_sym_LPAREN, + ACTIONS(1303), 1, + anon_sym_in, + ACTIONS(1305), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, + anon_sym_DOT, + ACTIONS(1311), 1, + anon_sym_QMARK_DOT, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, + anon_sym_QMARK, + ACTIONS(1329), 1, + anon_sym_AMP_AMP, + ACTIONS(1333), 1, + anon_sym_AMP, + ACTIONS(1335), 1, + anon_sym_PIPE, + ACTIONS(1337), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1321), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1331), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(611), 2, + sym_template_string, + sym_arguments, + ACTIONS(1299), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1313), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1244), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1307), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1319), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [17525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 13, + ACTIONS(545), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40066,7 +44113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1347), 26, + ACTIONS(547), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40093,73 +44140,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17441] = 22, + [17572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1231), 1, - anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(1402), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1235), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1404), 26, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1239), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1241), 1, anon_sym_QMARK_DOT, - ACTIONS(1243), 1, - anon_sym_QMARK, - ACTIONS(1245), 1, anon_sym_AMP_AMP, - ACTIONS(1251), 1, - anon_sym_AMP, - ACTIONS(1253), 1, - anon_sym_PIPE, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1261), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1247), 2, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1255), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1263), 2, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(554), 2, + anon_sym_BQUOTE, + [17619] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1301), 1, + anon_sym_LPAREN, + ACTIONS(1305), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, + anon_sym_DOT, + ACTIONS(1311), 1, + anon_sym_QMARK_DOT, + ACTIONS(1321), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1229), 3, + ACTIONS(1194), 13, anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(1249), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1196), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1196), 17, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1237), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1259), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [17526] = 3, + [17680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1349), 13, + ACTIONS(1406), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40173,7 +44252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1351), 26, + ACTIONS(1408), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40200,10 +44279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17573] = 3, + [17727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1353), 13, + ACTIONS(1410), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40217,7 +44296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1355), 26, + ACTIONS(1412), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40244,73 +44323,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17620] = 22, + [17774] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, - anon_sym_in, - ACTIONS(1235), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1243), 1, - anon_sym_QMARK, - ACTIONS(1245), 1, - anon_sym_AMP_AMP, - ACTIONS(1251), 1, - anon_sym_AMP, - ACTIONS(1253), 1, - anon_sym_PIPE, - ACTIONS(1257), 1, + ACTIONS(1317), 1, anon_sym_STAR_STAR, - ACTIONS(1261), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1255), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1263), 2, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(554), 2, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1229), 3, + ACTIONS(1299), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1249), 3, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1221), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1237), 4, + ACTIONS(1180), 10, + anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1259), 5, + ACTIONS(1182), 13, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + 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, - [17705] = 3, + [17841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(472), 13, + ACTIONS(1414), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40324,7 +44394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(474), 26, + ACTIONS(1416), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40351,10 +44421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17752] = 3, + [17888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(452), 13, + ACTIONS(1418), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40368,7 +44438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(454), 26, + ACTIONS(1420), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40395,98 +44465,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17799] = 3, + [17935] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(502), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(504), 26, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1301), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(1305), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1309), 1, anon_sym_DOT, + ACTIONS(1311), 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(1317), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [17846] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1331), 13, + STATE(611), 2, + sym_template_string, + sym_arguments, + ACTIONS(1299), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, + ACTIONS(1313), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1180), 4, + anon_sym_in, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1307), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1333), 26, - anon_sym_LBRACE, + ACTIONS(1319), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1182), 8, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [18008] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1301), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(1303), 1, + anon_sym_in, + ACTIONS(1305), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1309), 1, anon_sym_DOT, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, + anon_sym_QMARK, + ACTIONS(1329), 1, anon_sym_AMP_AMP, + ACTIONS(1333), 1, + anon_sym_AMP, + ACTIONS(1335), 1, + anon_sym_PIPE, + ACTIONS(1337), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1321), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1331), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(611), 2, + sym_template_string, + sym_arguments, + ACTIONS(1299), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1263), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1307), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [17893] = 3, + [18093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1357), 13, + ACTIONS(1295), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40500,7 +44602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1359), 26, + ACTIONS(1297), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40527,10 +44629,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17940] = 3, + [18140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1361), 13, + ACTIONS(1422), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40544,7 +44646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1363), 26, + ACTIONS(1252), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40571,54 +44673,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17987] = 3, + [18187] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1365), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1180), 1, anon_sym_QMARK, - 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(1367), 26, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1301), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(1303), 1, + anon_sym_in, + ACTIONS(1305), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1309), 1, anon_sym_DOT, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1329), 1, anon_sym_AMP_AMP, + ACTIONS(1333), 1, + anon_sym_AMP, + ACTIONS(1335), 1, + anon_sym_PIPE, + ACTIONS(1315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1321), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1331), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(611), 2, + sym_template_string, + sym_arguments, + ACTIONS(1299), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1307), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1182), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18034] = 3, + [18270] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1369), 13, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1301), 1, + anon_sym_LPAREN, + ACTIONS(1305), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, + anon_sym_DOT, + ACTIONS(1311), 1, + anon_sym_QMARK_DOT, + ACTIONS(1321), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(611), 2, + sym_template_string, + sym_arguments, + ACTIONS(1180), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40632,17 +44768,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1175), 26, - anon_sym_LBRACE, + ACTIONS(1182), 17, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40656,13 +44786,10 @@ 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, - [18081] = 3, + [18331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 13, + ACTIONS(1424), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40676,7 +44803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1373), 26, + ACTIONS(1426), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40703,119 +44830,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18128] = 24, + [18378] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(1303), 1, anon_sym_in, - ACTIONS(1235), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1243), 1, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, anon_sym_QMARK, - ACTIONS(1245), 1, + ACTIONS(1329), 1, anon_sym_AMP_AMP, - ACTIONS(1251), 1, + ACTIONS(1333), 1, anon_sym_AMP, - ACTIONS(1253), 1, + ACTIONS(1335), 1, anon_sym_PIPE, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1261), 1, + ACTIONS(1337), 1, anon_sym_QMARK_QMARK, - ACTIONS(1375), 1, - anon_sym_COMMA, - ACTIONS(1378), 1, - anon_sym_RBRACE, - ACTIONS(1204), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1255), 2, + ACTIONS(1315), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1263), 2, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(554), 2, + ACTIONS(1331), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1229), 3, + ACTIONS(1299), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1249), 3, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1237), 4, + ACTIONS(1238), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1307), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1259), 5, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [18217] = 3, + [18463] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1361), 14, - anon_sym_STAR, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1301), 1, + anon_sym_LPAREN, + ACTIONS(1303), 1, anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1305), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, + anon_sym_DOT, + ACTIONS(1311), 1, + anon_sym_QMARK_DOT, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1329), 1, + anon_sym_AMP_AMP, + ACTIONS(1333), 1, anon_sym_AMP, + ACTIONS(1180), 2, + anon_sym_QMARK, anon_sym_PIPE, + ACTIONS(1315), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1321), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(611), 2, + sym_template_string, + sym_arguments, + ACTIONS(1299), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1313), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1307), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1363), 25, + ACTIONS(1319), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1182), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [18542] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1301), 1, + anon_sym_LPAREN, + ACTIONS(1303), 1, + anon_sym_in, + ACTIONS(1305), 1, anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_DOT, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, + anon_sym_QMARK, + ACTIONS(1329), 1, anon_sym_AMP_AMP, + ACTIONS(1333), 1, + anon_sym_AMP, + ACTIONS(1335), 1, + anon_sym_PIPE, + ACTIONS(1337), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1321), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1331), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(611), 2, + sym_template_string, + sym_arguments, + ACTIONS(1299), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1206), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1307), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18264] = 3, + [18627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 13, + ACTIONS(1428), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40829,7 +45033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1215), 26, + ACTIONS(1430), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40856,10 +45060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18311] = 3, + [18674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 13, + ACTIONS(1432), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40873,7 +45077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1384), 26, + ACTIONS(1434), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -40900,77 +45104,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18358] = 10, + [18721] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1235), 1, + ACTIONS(1303), 1, + anon_sym_in, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1263), 2, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, + anon_sym_QMARK, + ACTIONS(1329), 1, + anon_sym_AMP_AMP, + ACTIONS(1333), 1, + anon_sym_AMP, + ACTIONS(1335), 1, + anon_sym_PIPE, + ACTIONS(1337), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(554), 2, + ACTIONS(1331), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1128), 13, + ACTIONS(1299), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(1130), 17, + ACTIONS(1313), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1278), 4, sym__automatic_semicolon, 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, + ACTIONS(1307), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [18419] = 10, + [18806] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1231), 1, - anon_sym_LPAREN, - ACTIONS(1235), 1, - anon_sym_LBRACK, - ACTIONS(1239), 1, - anon_sym_DOT, - ACTIONS(1241), 1, - anon_sym_QMARK_DOT, - ACTIONS(1263), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(554), 2, - sym_template_string, - sym_arguments, - ACTIONS(1128), 13, + ACTIONS(523), 1, + anon_sym_EQ, + ACTIONS(525), 1, + sym__automatic_semicolon, + ACTIONS(515), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(519), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40984,11 +45191,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1130), 17, - sym__automatic_semicolon, + ACTIONS(521), 22, 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, @@ -41002,10 +45211,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [18480] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [18859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1331), 13, + ACTIONS(1436), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41019,7 +45231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1333), 26, + ACTIONS(1438), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41046,10 +45258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18527] = 3, + [18906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1017), 13, + ACTIONS(1440), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41063,7 +45275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1019), 26, + ACTIONS(1293), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41090,12 +45302,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18574] = 4, + [18953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1050), 1, - anon_sym_EQ, - ACTIONS(1017), 13, + ACTIONS(1442), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41109,7 +45319,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1019), 25, + ACTIONS(1242), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -41135,90 +45346,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18623] = 24, + [19000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1231), 1, - anon_sym_LPAREN, - ACTIONS(1233), 1, - anon_sym_in, - ACTIONS(1235), 1, - anon_sym_LBRACK, - ACTIONS(1239), 1, - anon_sym_DOT, - ACTIONS(1241), 1, - anon_sym_QMARK_DOT, - ACTIONS(1243), 1, - anon_sym_QMARK, - ACTIONS(1245), 1, - anon_sym_AMP_AMP, - ACTIONS(1251), 1, - anon_sym_AMP, - ACTIONS(1253), 1, - anon_sym_PIPE, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1261), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1378), 1, - anon_sym_RBRACE, - ACTIONS(1386), 1, - anon_sym_COMMA, - ACTIONS(1217), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1255), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1263), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(554), 2, - sym_template_string, - sym_arguments, - ACTIONS(1229), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1249), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1237), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1259), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [18712] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1231), 1, - anon_sym_LPAREN, - ACTIONS(1235), 1, - anon_sym_LBRACK, - ACTIONS(1239), 1, - anon_sym_DOT, - ACTIONS(1241), 1, - anon_sym_QMARK_DOT, - STATE(554), 2, - sym_template_string, - sym_arguments, - ACTIONS(1114), 13, + ACTIONS(1377), 14, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -41230,11 +45364,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1116), 19, + ACTIONS(1379), 25, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + 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, @@ -41250,13 +45389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [18771] = 3, + anon_sym_BQUOTE, + [19047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1389), 14, + ACTIONS(1444), 13, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -41268,14 +45407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1391), 25, - sym__automatic_semicolon, + ACTIONS(1446), 26, + 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, @@ -41294,10 +45434,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18818] = 3, + [19094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1393), 13, + ACTIONS(1448), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41311,7 +45451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1395), 26, + ACTIONS(1450), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41338,122 +45478,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18865] = 6, + [19141] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1120), 1, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1181), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1397), 13, - anon_sym_STAR, + ACTIONS(1208), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1212), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1214), 1, + anon_sym_AMP_AMP, + ACTIONS(1220), 1, anon_sym_AMP, + ACTIONS(1222), 1, anon_sym_PIPE, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1230), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1216), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1204), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1218), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1210), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 23, - anon_sym_LBRACE, + ACTIONS(1452), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, 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, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18918] = 24, + [19226] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, - anon_sym_in, - ACTIONS(1235), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1243), 1, - anon_sym_QMARK, - ACTIONS(1245), 1, - anon_sym_AMP_AMP, - ACTIONS(1251), 1, - anon_sym_AMP, - ACTIONS(1253), 1, - anon_sym_PIPE, - ACTIONS(1257), 1, + ACTIONS(1317), 1, anon_sym_STAR_STAR, - ACTIONS(1261), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1401), 1, - anon_sym_COMMA, - ACTIONS(1404), 1, - anon_sym_RBRACE, - ACTIONS(1217), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1255), 2, + ACTIONS(1315), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1263), 2, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(554), 2, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1229), 3, + ACTIONS(1299), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1249), 3, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1237), 4, + ACTIONS(1180), 8, + anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1259), 5, + ACTIONS(1182), 13, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + 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, - [19007] = 3, + [19295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1406), 13, + ACTIONS(1454), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41467,7 +45613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1202), 26, + ACTIONS(1456), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41494,10 +45640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19054] = 3, + [19342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1397), 13, + ACTIONS(1458), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41511,7 +45657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 26, + ACTIONS(1460), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41538,10 +45684,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19101] = 3, + [19389] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1389), 13, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1301), 1, + anon_sym_LPAREN, + ACTIONS(1303), 1, + anon_sym_in, + ACTIONS(1305), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, + anon_sym_DOT, + ACTIONS(1311), 1, + anon_sym_QMARK_DOT, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, + anon_sym_QMARK, + ACTIONS(1329), 1, + anon_sym_AMP_AMP, + ACTIONS(1333), 1, + anon_sym_AMP, + ACTIONS(1335), 1, + anon_sym_PIPE, + ACTIONS(1337), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1321), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1331), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(611), 2, + sym_template_string, + sym_arguments, + ACTIONS(1299), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1313), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1293), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1307), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1319), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [19474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1462), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41555,7 +45764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1391), 26, + ACTIONS(1238), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41582,73 +45791,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19148] = 22, + [19521] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(1303), 1, anon_sym_in, - ACTIONS(1235), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1243), 1, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, anon_sym_QMARK, - ACTIONS(1245), 1, + ACTIONS(1329), 1, anon_sym_AMP_AMP, - ACTIONS(1251), 1, + ACTIONS(1333), 1, anon_sym_AMP, - ACTIONS(1253), 1, + ACTIONS(1335), 1, anon_sym_PIPE, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1261), 1, + ACTIONS(1337), 1, anon_sym_QMARK_QMARK, - ACTIONS(1247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1255), 2, + ACTIONS(1315), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1263), 2, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(554), 2, + ACTIONS(1331), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1229), 3, + ACTIONS(1299), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1249), 3, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1175), 4, + ACTIONS(1252), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1237), 4, + ACTIONS(1307), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1259), 5, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [19233] = 3, + [19606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 13, + ACTIONS(1464), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41662,7 +45871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1410), 26, + ACTIONS(1466), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41689,80 +45898,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19280] = 22, + [19653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1231), 1, - anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(1468), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1235), 1, - anon_sym_LBRACK, - ACTIONS(1239), 1, - anon_sym_DOT, - ACTIONS(1241), 1, - anon_sym_QMARK_DOT, - ACTIONS(1243), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1245), 1, - anon_sym_AMP_AMP, - ACTIONS(1251), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1253), 1, anon_sym_PIPE, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1261), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1255), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1263), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(554), 2, - sym_template_string, - sym_arguments, - ACTIONS(1229), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1249), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1470), 26, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1219), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1237), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1259), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [19365] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [19700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(436), 1, - anon_sym_EQ, - ACTIONS(438), 1, - sym__automatic_semicolon, - ACTIONS(428), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(432), 13, + ACTIONS(1468), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41776,11 +45959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(434), 22, + ACTIONS(1470), 26, + 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, @@ -41799,10 +45986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19418] = 3, + [19747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1331), 13, + ACTIONS(1468), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41816,7 +46003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1333), 26, + ACTIONS(1470), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41843,75 +46030,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19465] = 22, + [19794] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(1303), 1, anon_sym_in, - ACTIONS(1235), 1, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1243), 1, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, anon_sym_QMARK, - ACTIONS(1245), 1, + ACTIONS(1329), 1, anon_sym_AMP_AMP, - ACTIONS(1251), 1, + ACTIONS(1333), 1, anon_sym_AMP, - ACTIONS(1253), 1, + ACTIONS(1335), 1, anon_sym_PIPE, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1261), 1, + ACTIONS(1337), 1, anon_sym_QMARK_QMARK, - ACTIONS(1247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1255), 2, + ACTIONS(1315), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1263), 2, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(554), 2, + ACTIONS(1331), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1229), 3, + ACTIONS(1299), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1249), 3, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1204), 4, + ACTIONS(1240), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1237), 4, + ACTIONS(1307), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1259), 5, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [19550] = 4, + [19879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(436), 1, - anon_sym_EQ, - ACTIONS(432), 13, + ACTIONS(1468), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41925,7 +46110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(434), 25, + ACTIONS(1470), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -41951,10 +46137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19599] = 3, + [19926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(534), 13, + ACTIONS(1472), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41968,7 +46154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(532), 26, + ACTIONS(1474), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -41995,10 +46181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19646] = 3, + [19973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(442), 13, + ACTIONS(1476), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42012,7 +46198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(440), 26, + ACTIONS(1478), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -42039,10 +46225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19693] = 3, + [20020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 13, + ACTIONS(1480), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42056,7 +46242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1414), 26, + ACTIONS(1482), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -42083,73 +46269,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19740] = 22, + [20067] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1303), 1, + anon_sym_in, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, - anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1329), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1333), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1335), 1, anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1337), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1331), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1299), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1291), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1307), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1416), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1171), 5, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [19825] = 3, + [20152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(482), 13, + ACTIONS(563), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42163,7 +46349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(484), 26, + ACTIONS(561), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -42190,14 +46376,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19872] = 5, + [20199] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(436), 1, - anon_sym_EQ, - ACTIONS(446), 1, + ACTIONS(593), 1, sym__automatic_semicolon, - ACTIONS(430), 13, + ACTIONS(585), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(589), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42211,9 +46398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(428), 23, + ACTIONS(591), 22, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -42235,79 +46421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19922] = 22, + [20249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1151), 1, - anon_sym_in, - ACTIONS(1155), 1, - anon_sym_QMARK, - ACTIONS(1157), 1, - anon_sym_AMP_AMP, - ACTIONS(1163), 1, - anon_sym_AMP, - ACTIONS(1165), 1, - anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1159), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1167), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1161), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1418), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1153), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1171), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [20006] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1190), 1, + ACTIONS(1289), 1, anon_sym_EQ, - ACTIONS(1420), 1, - anon_sym_in, - ACTIONS(1423), 1, - anon_sym_of, - ACTIONS(1183), 12, + ACTIONS(1282), 13, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -42319,9 +46440,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1185), 23, + ACTIONS(1284), 24, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -42343,17 +46465,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20058] = 6, + [20297] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 1, - anon_sym_EQ, - ACTIONS(1425), 1, - anon_sym_in, - ACTIONS(1428), 1, - anon_sym_of, - ACTIONS(1138), 12, + ACTIONS(539), 1, + sym__automatic_semicolon, + ACTIONS(531), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(535), 13, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -42365,8 +46487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1140), 23, - sym__automatic_semicolon, + ACTIONS(537), 22, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -42389,140 +46510,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20110] = 23, + [20347] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(702), 1, + anon_sym_COMMA, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, - anon_sym_in, - ACTIONS(1235), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1243), 1, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1245), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1251), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1253), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1257), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1261), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1430), 1, - anon_sym_COMMA, - ACTIONS(1247), 2, + ACTIONS(1484), 1, + anon_sym_RBRACK, + STATE(1133), 1, + aux_sym_array_repeat1, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1255), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1263), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1432), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(554), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1229), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1249), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1237), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1259), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [20196] = 22, + [20435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1231), 1, - anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(603), 1, + sym__automatic_semicolon, + ACTIONS(595), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(599), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1235), 1, - anon_sym_LBRACK, - ACTIONS(1239), 1, - anon_sym_DOT, - ACTIONS(1241), 1, - anon_sym_QMARK_DOT, - ACTIONS(1243), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1245), 1, - anon_sym_AMP_AMP, - ACTIONS(1251), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1253), 1, anon_sym_PIPE, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1261), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1255), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1263), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(554), 2, - sym_template_string, - sym_arguments, - ACTIONS(1229), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1249), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(601), 22, + 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, - ACTIONS(1434), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1237), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1259), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [20280] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [20485] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(466), 1, + ACTIONS(579), 1, sym__automatic_semicolon, - ACTIONS(458), 2, + ACTIONS(571), 2, anon_sym_else, anon_sym_while, - ACTIONS(462), 13, + ACTIONS(575), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42536,7 +46641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(464), 22, + ACTIONS(577), 22, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -42559,63 +46664,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20330] = 8, + [20535] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1231), 1, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1235), 1, + ACTIONS(1303), 1, + anon_sym_in, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1436), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - STATE(619), 1, - sym_arguments, - ACTIONS(1177), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1329), 1, + anon_sym_AMP_AMP, + ACTIONS(1333), 1, anon_sym_AMP, + ACTIONS(1335), 1, anon_sym_PIPE, + ACTIONS(1337), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1315), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1179), 20, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, + ACTIONS(1321), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1331), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(611), 2, + sym_template_string, + sym_arguments, + ACTIONS(1299), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1486), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(1307), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20386] = 5, + [20619] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(516), 1, + ACTIONS(559), 1, sym__automatic_semicolon, - ACTIONS(508), 2, + ACTIONS(551), 2, anon_sym_else, anon_sym_while, - ACTIONS(512), 13, + ACTIONS(555), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42629,7 +46748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(514), 22, + ACTIONS(557), 22, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -42652,79 +46771,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20436] = 24, + [20669] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(609), 1, + ACTIONS(702), 1, anon_sym_COMMA, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1438), 1, - anon_sym_RPAREN, - STATE(1090), 1, + ACTIONS(1488), 1, + anon_sym_RBRACK, + STATE(1133), 1, aux_sym_array_repeat1, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [20524] = 5, + [20757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(456), 1, - sym__automatic_semicolon, - ACTIONS(448), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(452), 13, + ACTIONS(1261), 1, + anon_sym_EQ, + ACTIONS(1254), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42738,8 +46854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(454), 22, + ACTIONS(1256), 24, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -42761,15 +46879,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20574] = 5, + [20805] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(530), 1, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1301), 1, + anon_sym_LPAREN, + ACTIONS(1303), 1, + anon_sym_in, + ACTIONS(1305), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, + anon_sym_DOT, + ACTIONS(1311), 1, + anon_sym_QMARK_DOT, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, + anon_sym_QMARK, + ACTIONS(1329), 1, + anon_sym_AMP_AMP, + ACTIONS(1333), 1, + anon_sym_AMP, + ACTIONS(1335), 1, + anon_sym_PIPE, + ACTIONS(1337), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1490), 1, + anon_sym_COMMA, + ACTIONS(1315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1321), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1331), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1492), 2, sym__automatic_semicolon, - ACTIONS(522), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(526), 13, + anon_sym_SEMI, + STATE(611), 2, + sym_template_string, + sym_arguments, + ACTIONS(1299), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1313), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1307), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1319), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [20891] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1301), 1, + anon_sym_LPAREN, + ACTIONS(1305), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, + anon_sym_DOT, + ACTIONS(1494), 1, + anon_sym_QMARK_DOT, + STATE(663), 1, + sym_arguments, + ACTIONS(1232), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42783,13 +46969,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(528), 22, + ACTIONS(1234), 20, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -42806,12 +46990,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20624] = 4, + [20947] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 1, + ACTIONS(523), 1, anon_sym_EQ, - ACTIONS(1138), 13, + ACTIONS(565), 1, + sym__automatic_semicolon, + ACTIONS(517), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42825,8 +47011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1140), 24, - sym__automatic_semicolon, + ACTIONS(515), 23, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -42850,15 +47035,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20672] = 5, + [20997] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1301), 1, + anon_sym_LPAREN, + ACTIONS(1303), 1, + anon_sym_in, + ACTIONS(1305), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, + anon_sym_DOT, + ACTIONS(1311), 1, + anon_sym_QMARK_DOT, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, + anon_sym_QMARK, + ACTIONS(1329), 1, + anon_sym_AMP_AMP, + ACTIONS(1333), 1, + anon_sym_AMP, + ACTIONS(1335), 1, + anon_sym_PIPE, + ACTIONS(1337), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1490), 1, + anon_sym_COMMA, + ACTIONS(1315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1321), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1331), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1496), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(611), 2, + sym_template_string, + sym_arguments, + ACTIONS(1299), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1313), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1307), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1319), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [21083] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(476), 1, + ACTIONS(549), 1, sym__automatic_semicolon, - ACTIONS(468), 2, + ACTIONS(541), 2, anon_sym_else, anon_sym_while, - ACTIONS(472), 13, + ACTIONS(545), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42872,7 +47120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(474), 22, + ACTIONS(547), 22, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -42895,17 +47143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20722] = 6, + [21133] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(436), 1, - anon_sym_EQ, - ACTIONS(1440), 1, - anon_sym_in, - ACTIONS(1443), 1, - anon_sym_of, - ACTIONS(432), 12, + ACTIONS(625), 1, + sym__automatic_semicolon, + ACTIONS(617), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(621), 13, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -42917,8 +47165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(434), 23, - sym__automatic_semicolon, + ACTIONS(623), 22, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -42941,14 +47188,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20774] = 4, + [21183] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1445), 1, - sym_regex_flags, - ACTIONS(1223), 14, - anon_sym_STAR, + ACTIONS(1118), 1, anon_sym_in, + ACTIONS(1121), 1, + anon_sym_of, + ACTIONS(1123), 1, + anon_sym_EQ, + ACTIONS(1079), 12, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -42960,11 +47210,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1225), 23, + ACTIONS(1081), 23, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -42982,20 +47230,21 @@ 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, - [20822] = 5, + [21235] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(486), 1, - sym__automatic_semicolon, - ACTIONS(478), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(482), 13, - anon_sym_STAR, + ACTIONS(1261), 1, + anon_sym_EQ, + ACTIONS(1498), 1, anon_sym_in, + ACTIONS(1501), 1, + anon_sym_of, + ACTIONS(1254), 12, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -43007,7 +47256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(484), 22, + ACTIONS(1256), 23, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -43030,138 +47280,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20872] = 23, + [21287] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1231), 1, - anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(615), 1, + sym__automatic_semicolon, + ACTIONS(607), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(611), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1235), 1, - anon_sym_LBRACK, - ACTIONS(1239), 1, - anon_sym_DOT, - ACTIONS(1241), 1, - anon_sym_QMARK_DOT, - ACTIONS(1243), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1245), 1, - anon_sym_AMP_AMP, - ACTIONS(1251), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1253), 1, anon_sym_PIPE, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1261), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1430), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(613), 22, anon_sym_COMMA, - ACTIONS(1247), 2, + 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, - ACTIONS(1255), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1263), 2, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + 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(1447), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(554), 2, - sym_template_string, - sym_arguments, - ACTIONS(1229), 3, + anon_sym_BQUOTE, + [21337] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1289), 1, + anon_sym_EQ, + ACTIONS(1503), 1, + anon_sym_in, + ACTIONS(1506), 1, + anon_sym_of, + ACTIONS(1282), 12, anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(1249), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1284), 23, + sym__automatic_semicolon, + 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, - ACTIONS(1237), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1259), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [20958] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21389] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1231), 1, - anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(523), 1, + anon_sym_EQ, + ACTIONS(1508), 1, anon_sym_in, - ACTIONS(1235), 1, - anon_sym_LBRACK, - ACTIONS(1239), 1, - anon_sym_DOT, - ACTIONS(1241), 1, - anon_sym_QMARK_DOT, - ACTIONS(1243), 1, + ACTIONS(1511), 1, + anon_sym_of, + ACTIONS(519), 12, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1245), 1, - anon_sym_AMP_AMP, - ACTIONS(1251), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1253), 1, anon_sym_PIPE, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1261), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1430), 1, - anon_sym_COMMA, - ACTIONS(1247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1255), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1263), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1449), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(521), 23, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - STATE(554), 2, - sym_template_string, - sym_arguments, - ACTIONS(1229), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1249), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1237), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1259), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [21044] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21441] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(436), 1, + ACTIONS(523), 1, anon_sym_EQ, - ACTIONS(432), 13, + ACTIONS(519), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43175,7 +47436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(434), 24, + ACTIONS(521), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -43200,12 +47461,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21092] = 4, + [21489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1112), 1, anon_sym_EQ, - ACTIONS(1183), 13, + ACTIONS(1079), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43219,7 +47480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1185), 24, + ACTIONS(1081), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -43244,380 +47505,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21140] = 24, + [21537] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(609), 1, + ACTIONS(702), 1, anon_sym_COMMA, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1451), 1, + ACTIONS(1513), 1, anon_sym_RBRACK, - STATE(1093), 1, + STATE(1105), 1, aux_sym_array_repeat1, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21228] = 24, + [21625] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(609), 1, + ACTIONS(702), 1, anon_sym_COMMA, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1453), 1, - anon_sym_RBRACK, - STATE(1095), 1, + ACTIONS(1515), 1, + anon_sym_RPAREN, + STATE(1138), 1, aux_sym_array_repeat1, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21316] = 24, + [21713] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(609), 1, - anon_sym_COMMA, - ACTIONS(1118), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1303), 1, + anon_sym_in, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, - anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1329), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1333), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1335), 1, anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1337), 1, anon_sym_QMARK_QMARK, - ACTIONS(1455), 1, - anon_sym_RPAREN, - STATE(1023), 1, - aux_sym_array_repeat1, - ACTIONS(1132), 2, + ACTIONS(1490), 1, + anon_sym_COMMA, + ACTIONS(1315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1331), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, + ACTIONS(1517), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1299), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1307), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21404] = 6, + [21799] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1056), 1, - anon_sym_EQ, - ACTIONS(1066), 1, - anon_sym_in, - ACTIONS(1069), 1, - anon_sym_of, - ACTIONS(1017), 12, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1019), 23, - sym__automatic_semicolon, - 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, - [21456] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(374), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(609), 1, - anon_sym_COMMA, - ACTIONS(1118), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1303), 1, + anon_sym_in, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, - anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1329), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1333), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1335), 1, anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1337), 1, anon_sym_QMARK_QMARK, - ACTIONS(1457), 1, - anon_sym_RBRACK, - STATE(1093), 1, - aux_sym_array_repeat1, - ACTIONS(1132), 2, + ACTIONS(1490), 1, + anon_sym_COMMA, + ACTIONS(1267), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1331), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1299), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1307), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21544] = 23, + [21885] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(702), 1, + anon_sym_COMMA, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, - anon_sym_in, - ACTIONS(1235), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1243), 1, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1245), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1251), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1253), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1257), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1261), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1430), 1, - anon_sym_COMMA, - ACTIONS(1211), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1247), 2, + ACTIONS(1519), 1, + anon_sym_RPAREN, + STATE(1163), 1, + aux_sym_array_repeat1, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1255), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1263), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(554), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1229), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1249), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1237), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1259), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21630] = 5, + [21973] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(506), 1, - sym__automatic_semicolon, - ACTIONS(498), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(502), 13, + ACTIONS(1123), 1, + anon_sym_EQ, + ACTIONS(1079), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43631,8 +47842,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(504), 22, + ACTIONS(1081), 24, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -43654,101 +47867,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21680] = 4, + [22021] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, - anon_sym_EQ, - ACTIONS(1017), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1019), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1186), 1, anon_sym_LBRACK, + ACTIONS(1188), 1, anon_sym_DOT, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(1212), 1, + anon_sym_QMARK, + ACTIONS(1214), 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(1220), 1, + anon_sym_AMP, + ACTIONS(1222), 1, + anon_sym_PIPE, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21728] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(496), 1, - sym__automatic_semicolon, - ACTIONS(488), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(492), 13, + ACTIONS(1216), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1224), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1204), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(494), 22, - 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, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1521), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1210), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21778] = 4, + [22105] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1056), 1, - anon_sym_EQ, - ACTIONS(1017), 13, + ACTIONS(1523), 1, + sym_regex_flags, + ACTIONS(1272), 14, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43762,7 +47948,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1019), 24, + anon_sym_instanceof, + ACTIONS(1274), 23, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -43783,180 +47970,198 @@ 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, - [21826] = 23, + [22153] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1209), 1, + ACTIONS(1265), 1, anon_sym_COMMA, - ACTIONS(1459), 1, + ACTIONS(1525), 1, anon_sym_RPAREN, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21911] = 3, + [22238] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1271), 13, - anon_sym_STAR, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1208), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1212), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1214), 1, + anon_sym_AMP_AMP, + ACTIONS(1220), 1, anon_sym_AMP, + ACTIONS(1222), 1, anon_sym_PIPE, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1230), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1216), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1219), 24, - sym__automatic_semicolon, + ACTIONS(1398), 2, 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, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1204), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1210), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21956] = 23, + [22321] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1209), 1, + ACTIONS(1265), 1, anon_sym_COMMA, - ACTIONS(1461), 1, + ACTIONS(1527), 1, anon_sym_RPAREN, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [22041] = 3, + [22406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1092), 13, + ACTIONS(621), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43970,7 +48175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1094), 24, + ACTIONS(623), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -43995,10 +48200,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22086] = 3, + [22451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1335), 13, + ACTIONS(1472), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44012,7 +48217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1337), 24, + ACTIONS(1474), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -44037,10 +48242,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22131] = 3, + [22496] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 13, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(1212), 1, + anon_sym_QMARK, + ACTIONS(1214), 1, + anon_sym_AMP_AMP, + ACTIONS(1220), 1, + anon_sym_AMP, + ACTIONS(1222), 1, + anon_sym_PIPE, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1230), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1265), 1, + anon_sym_COMMA, + ACTIONS(1529), 1, + anon_sym_RBRACK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1216), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1224), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1204), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1218), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1210), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1228), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [22581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1476), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1478), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [22626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44054,7 +48363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1295), 24, + ACTIONS(1155), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -44079,72 +48388,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22176] = 23, + [22671] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1209), 1, + ACTIONS(1265), 1, anon_sym_COMMA, - ACTIONS(1463), 1, - anon_sym_RBRACK, - ACTIONS(1132), 2, + ACTIONS(1531), 1, + anon_sym_RBRACE, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [22261] = 3, + [22756] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1303), 13, + ACTIONS(1305), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, + anon_sym_DOT, + ACTIONS(1494), 1, + anon_sym_QMARK_DOT, + ACTIONS(1295), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44158,15 +48473,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1305), 24, + ACTIONS(1297), 21, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -44183,10 +48495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22306] = 3, + [22807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1307), 13, + ACTIONS(1418), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44200,7 +48512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1309), 24, + ACTIONS(1420), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -44225,10 +48537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22351] = 3, + [22852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1323), 13, + ACTIONS(1436), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44242,7 +48554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1325), 24, + ACTIONS(1438), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -44267,72 +48579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22396] = 23, + [22897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1151), 1, - anon_sym_in, - ACTIONS(1155), 1, - anon_sym_QMARK, - ACTIONS(1157), 1, - anon_sym_AMP_AMP, - ACTIONS(1163), 1, - anon_sym_AMP, - ACTIONS(1165), 1, - anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1209), 1, - anon_sym_COMMA, - ACTIONS(1465), 1, - anon_sym_RPAREN, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1159), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1167), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1161), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1153), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1171), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [22481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(526), 13, + ACTIONS(1347), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44346,7 +48596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(528), 24, + ACTIONS(1349), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -44371,10 +48621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22526] = 3, + [22942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1315), 13, + ACTIONS(1295), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44388,7 +48638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1317), 24, + ACTIONS(1297), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -44413,94 +48663,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22571] = 3, + [22987] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(492), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(494), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1186), 1, anon_sym_LBRACK, + ACTIONS(1188), 1, anon_sym_DOT, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(1212), 1, + anon_sym_QMARK, + ACTIONS(1214), 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(1220), 1, + anon_sym_AMP, + ACTIONS(1222), 1, + anon_sym_PIPE, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1265), 1, + anon_sym_COMMA, + ACTIONS(1533), 1, + anon_sym_RBRACK, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22616] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(512), 13, + ACTIONS(1216), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1224), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1204), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(514), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1210), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22661] = 3, + [23072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(462), 13, + ACTIONS(611), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44514,7 +48742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(464), 24, + ACTIONS(613), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -44539,132 +48767,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22706] = 22, + [23117] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1473), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1475), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1481), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1483), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1487), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1491), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1265), 1, + anon_sym_COMMA, + ACTIONS(1535), 1, + anon_sym_RPAREN, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1204), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1477), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1485), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1467), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1479), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1471), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [22789] = 22, + [23202] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(1537), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, + ACTIONS(1540), 1, + anon_sym_COLON, + ACTIONS(1079), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1235), 1, - anon_sym_LBRACK, - ACTIONS(1239), 1, - anon_sym_DOT, - ACTIONS(1241), 1, - anon_sym_QMARK_DOT, - ACTIONS(1243), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1245), 1, - anon_sym_AMP_AMP, - ACTIONS(1251), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1253), 1, anon_sym_PIPE, - ACTIONS(1257), 1, - anon_sym_STAR_STAR, - ACTIONS(1261), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1255), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1263), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1493), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1081), 22, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - STATE(554), 2, - sym_template_string, - sym_arguments, - ACTIONS(1229), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1249), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1237), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1259), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [22872] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [23251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1112), 13, + ACTIONS(1480), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44678,7 +48890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1110), 24, + ACTIONS(1482), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -44703,76 +48915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22917] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1151), 1, - anon_sym_in, - ACTIONS(1155), 1, - anon_sym_QMARK, - ACTIONS(1157), 1, - anon_sym_AMP_AMP, - ACTIONS(1163), 1, - anon_sym_AMP, - ACTIONS(1165), 1, - anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1209), 1, - anon_sym_COMMA, - ACTIONS(1495), 1, - anon_sym_COLON, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1159), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1167), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1161), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1153), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1171), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [23002] = 5, + [23296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 1, - anon_sym_LPAREN, - ACTIONS(1500), 1, - anon_sym_COLON, - ACTIONS(1319), 13, + ACTIONS(1454), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44786,9 +48932,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1321), 22, + ACTIONS(1456), 24, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -44809,10 +48957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23051] = 3, + [23341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1393), 13, + ACTIONS(1414), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44826,7 +48974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1395), 24, + ACTIONS(1416), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -44851,71 +48999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23096] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1469), 1, - anon_sym_in, - ACTIONS(1473), 1, - anon_sym_QMARK, - ACTIONS(1475), 1, - anon_sym_AMP_AMP, - ACTIONS(1481), 1, - anon_sym_AMP, - ACTIONS(1483), 1, - anon_sym_PIPE, - ACTIONS(1487), 1, - anon_sym_STAR_STAR, - ACTIONS(1491), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1202), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1477), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1485), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1467), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1479), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1471), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1489), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [23179] = 3, + [23386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1397), 13, + ACTIONS(589), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44929,7 +49016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 24, + ACTIONS(591), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -44954,10 +49041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23224] = 3, + [23431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1406), 13, + ACTIONS(1432), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44971,7 +49058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1202), 24, + ACTIONS(1434), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -44996,10 +49083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23269] = 3, + [23476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(472), 13, + ACTIONS(1149), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45013,7 +49100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(474), 24, + ACTIONS(1151), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -45038,10 +49125,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23314] = 3, + [23521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(452), 13, + ACTIONS(1410), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45055,7 +49142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(454), 24, + ACTIONS(1412), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -45080,10 +49167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23359] = 3, + [23566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(502), 13, + ACTIONS(1464), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45097,7 +49184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(504), 24, + ACTIONS(1466), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -45122,55 +49209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23404] = 6, + [23611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, - anon_sym_LBRACK, - ACTIONS(1239), 1, - anon_sym_DOT, - ACTIONS(1436), 1, - anon_sym_QMARK_DOT, - ACTIONS(1397), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1399), 21, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23455] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1017), 13, + ACTIONS(1468), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45184,7 +49226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1019), 24, + ACTIONS(1470), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -45209,195 +49251,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23500] = 23, + [23656] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1209), 1, + ACTIONS(1265), 1, anon_sym_COMMA, - ACTIONS(1502), 1, - anon_sym_RBRACE, - ACTIONS(1132), 2, + ACTIONS(1542), 1, + anon_sym_RPAREN, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [23585] = 22, + [23741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1462), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1473), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1475), 1, - anon_sym_AMP_AMP, - ACTIONS(1481), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1483), 1, anon_sym_PIPE, - ACTIONS(1487), 1, - anon_sym_STAR_STAR, - ACTIONS(1491), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1221), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1477), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1485), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1467), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1479), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1238), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1471), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1489), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [23668] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [23786] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1303), 1, + anon_sym_in, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, - anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1329), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1333), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1335), 1, anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1337), 1, anon_sym_QMARK_QMARK, - ACTIONS(1209), 1, - anon_sym_COMMA, - ACTIONS(1504), 1, - anon_sym_RPAREN, - ACTIONS(1132), 2, + ACTIONS(1315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1331), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, + ACTIONS(1544), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1299), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1307), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [23753] = 3, + [23869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 13, + ACTIONS(1468), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45411,7 +49433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1373), 24, + ACTIONS(1470), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -45436,150 +49458,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23798] = 22, + [23914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1393), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1473), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1475), 1, - anon_sym_AMP_AMP, - ACTIONS(1481), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1483), 1, anon_sym_PIPE, - ACTIONS(1487), 1, - anon_sym_STAR_STAR, - ACTIONS(1491), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1217), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1477), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1485), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1467), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1479), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1280), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1471), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1489), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [23881] = 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [23959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1468), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1473), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1475), 1, - anon_sym_AMP_AMP, - ACTIONS(1481), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1483), 1, anon_sym_PIPE, - ACTIONS(1487), 1, - anon_sym_STAR_STAR, - ACTIONS(1491), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1215), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1477), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1485), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1467), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1479), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1470), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1471), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1489), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [23964] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1487), 1, - anon_sym_STAR_STAR, - ACTIONS(1132), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1134), 13, + anon_sym_BQUOTE, + [24004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1444), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45593,25 +49559,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1136), 14, - anon_sym_LBRACE, - anon_sym_COLON, + ACTIONS(1446), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [24025] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [24049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 13, + ACTIONS(1440), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45625,7 +49601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1410), 24, + ACTIONS(1293), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -45650,174 +49626,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24070] = 16, + [24094] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1487), 1, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(1212), 1, + anon_sym_QMARK, + ACTIONS(1214), 1, + anon_sym_AMP_AMP, + ACTIONS(1220), 1, + anon_sym_AMP, + ACTIONS(1222), 1, + anon_sym_PIPE, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1132), 2, + ACTIONS(1230), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1265), 1, + anon_sym_COMMA, + ACTIONS(1546), 1, + anon_sym_RBRACK, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1485), 2, + ACTIONS(1216), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1467), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1479), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1134), 4, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1471), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1136), 6, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [24141] = 14, + [24179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1487), 1, - anon_sym_STAR_STAR, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1485), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1467), 3, + ACTIONS(1422), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1479), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1134), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(1136), 11, - anon_sym_LBRACE, - anon_sym_COLON, + ACTIONS(1252), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [24208] = 17, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [24224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1468), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1487), 1, - anon_sym_STAR_STAR, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1485), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1134), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1467), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1479), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1470), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1471), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1489), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1136), 6, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [24281] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [24269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1289), 13, + ACTIONS(1369), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45831,7 +49789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1291), 24, + ACTIONS(1371), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -45856,182 +49814,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24326] = 19, + [24314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1406), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1475), 1, - anon_sym_AMP_AMP, - ACTIONS(1481), 1, - anon_sym_AMP, - ACTIONS(1487), 1, - anon_sym_STAR_STAR, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1134), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1485), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1467), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1479), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1471), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1136), 5, - anon_sym_LBRACE, - anon_sym_COLON, + ACTIONS(1408), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - anon_sym_QMARK_QMARK, - ACTIONS(1489), 5, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [24403] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [24359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1400), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1155), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1157), 1, - anon_sym_AMP_AMP, - ACTIONS(1163), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1165), 1, anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1209), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1291), 24, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(1506), 1, anon_sym_RBRACE, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1159), 2, + 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_CARET, - ACTIONS(1167), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1161), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1153), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1171), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [24488] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1487), 1, - anon_sym_STAR_STAR, - ACTIONS(1132), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1467), 3, + anon_sym_BQUOTE, + [24404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(545), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1479), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1134), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(1136), 11, - anon_sym_LBRACE, - anon_sym_COLON, + ACTIONS(547), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [24553] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [24449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(482), 13, + ACTIONS(1442), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46045,7 +49957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(484), 24, + ACTIONS(1242), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46070,10 +49982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24598] = 3, + [24494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 13, + ACTIONS(1145), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46087,7 +49999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1287), 24, + ACTIONS(1147), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46112,253 +50024,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24643] = 21, + [24539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1402), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1404), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1120), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1122), 1, anon_sym_DOT, - ACTIONS(1124), 1, anon_sym_QMARK_DOT, - ACTIONS(1134), 1, - anon_sym_QMARK, - ACTIONS(1469), 1, - anon_sym_in, - ACTIONS(1475), 1, anon_sym_AMP_AMP, - ACTIONS(1481), 1, - anon_sym_AMP, - ACTIONS(1483), 1, - anon_sym_PIPE, - ACTIONS(1487), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1132), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1477), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1485), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1136), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(1467), 3, + anon_sym_BQUOTE, + [24584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1386), 13, anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(1479), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1388), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1471), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1489), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [24724] = 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [24629] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1473), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1475), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1481), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1483), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1487), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1491), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1265), 1, + anon_sym_COMMA, + ACTIONS(1548), 1, + anon_sym_RBRACK, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1200), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1477), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1485), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1467), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1479), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1471), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24807] = 22, + [24714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1424), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1426), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1120), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1122), 1, anon_sym_DOT, - ACTIONS(1124), 1, anon_sym_QMARK_DOT, - ACTIONS(1469), 1, - anon_sym_in, - ACTIONS(1473), 1, - anon_sym_QMARK, - ACTIONS(1475), 1, anon_sym_AMP_AMP, - ACTIONS(1481), 1, - anon_sym_AMP, - ACTIONS(1483), 1, - anon_sym_PIPE, - ACTIONS(1487), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1491), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1149), 2, - anon_sym_LBRACE, + anon_sym_BQUOTE, + [24759] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1550), 1, + anon_sym_LPAREN, + ACTIONS(1553), 1, anon_sym_COLON, - ACTIONS(1477), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1485), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1467), 3, + ACTIONS(1351), 13, anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(1479), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1353), 22, + sym__automatic_semicolon, + 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, - ACTIONS(1471), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1489), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [24890] = 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [24808] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1473), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1475), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1481), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1483), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1487), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1491), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1265), 1, + anon_sym_COMMA, + ACTIONS(1555), 1, + anon_sym_RPAREN, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1219), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1477), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1485), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1467), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1479), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1471), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24973] = 3, + [24893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 13, + ACTIONS(1355), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46372,7 +50335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1347), 24, + ACTIONS(1357), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46397,194 +50360,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25018] = 22, + [24938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1178), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1473), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1475), 1, - anon_sym_AMP_AMP, - ACTIONS(1481), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1483), 1, anon_sym_PIPE, - ACTIONS(1487), 1, - anon_sym_STAR_STAR, - ACTIONS(1491), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1198), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1477), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1485), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1467), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1479), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1176), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1471), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1489), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [25101] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [24983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1351), 13, + anon_sym_STAR, anon_sym_in, - ACTIONS(1155), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1157), 1, - anon_sym_AMP_AMP, - ACTIONS(1163), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1165), 1, anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1209), 1, - anon_sym_COMMA, - ACTIONS(1508), 1, - anon_sym_RBRACK, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1159), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1167), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1161), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1353), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1153), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1171), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [25186] = 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [25028] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1265), 1, + anon_sym_COMMA, + ACTIONS(1557), 1, + anon_sym_RPAREN, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1404), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25269] = 3, + [25113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 13, + ACTIONS(1079), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46598,7 +50523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1414), 24, + ACTIONS(1081), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46623,174 +50548,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25314] = 22, + [25158] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1301), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1303), 1, + anon_sym_in, + ACTIONS(1305), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1309), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1311), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, - anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1317), 1, + anon_sym_STAR_STAR, + ACTIONS(1327), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1329), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1333), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1335), 1, anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1337), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1559), 1, + anon_sym_SEMI, + ACTIONS(1561), 1, + sym__automatic_semicolon, + ACTIONS(1315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1321), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1331), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1378), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(454), 2, + STATE(611), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1299), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1313), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1307), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1319), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25397] = 3, + [25243] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1343), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1149), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1186), 1, anon_sym_LBRACK, + ACTIONS(1188), 1, anon_sym_DOT, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(1212), 1, + anon_sym_QMARK, + ACTIONS(1214), 1, anon_sym_AMP_AMP, + ACTIONS(1220), 1, + anon_sym_AMP, + ACTIONS(1222), 1, + anon_sym_PIPE, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1230), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1265), 1, + anon_sym_COMMA, + ACTIONS(1563), 1, + anon_sym_RPAREN, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1224), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1204), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1210), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [25442] = 22, + [25328] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1473), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1475), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1481), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1483), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1487), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1491), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1265), 1, + anon_sym_COMMA, + ACTIONS(1565), 1, + anon_sym_RBRACE, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1175), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1477), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1485), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1467), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1479), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1471), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25525] = 3, + [25413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 13, + ACTIONS(1373), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46804,7 +50751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1283), 24, + ACTIONS(1375), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46829,71 +50776,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25570] = 22, + [25458] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1473), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1475), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1481), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1483), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1487), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1491), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1265), 1, + anon_sym_COMMA, + ACTIONS(1567), 1, + anon_sym_RPAREN, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1194), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1477), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1485), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1467), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1479), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1471), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25653] = 3, + [25543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1327), 13, + ACTIONS(1448), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46907,7 +50855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1329), 24, + ACTIONS(1450), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46932,10 +50880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25698] = 3, + [25588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1339), 13, + ACTIONS(599), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46949,7 +50897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1341), 24, + ACTIONS(601), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -46974,14 +50922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25743] = 5, + [25633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1510), 1, - anon_sym_LPAREN, - ACTIONS(1513), 1, - anon_sym_COLON, - ACTIONS(1017), 13, + ACTIONS(1458), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46995,9 +50939,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1019), 22, + ACTIONS(1460), 24, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -47018,52 +50964,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25792] = 3, + [25678] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1100), 13, - anon_sym_STAR, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1208), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1212), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1214), 1, + anon_sym_AMP_AMP, + ACTIONS(1220), 1, anon_sym_AMP, + ACTIONS(1222), 1, anon_sym_PIPE, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1230), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1216), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1102), 24, - sym__automatic_semicolon, + ACTIONS(1569), 2, 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, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1204), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1210), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [25837] = 3, + [25761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1319), 13, + ACTIONS(535), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47077,7 +51042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1321), 24, + ACTIONS(537), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -47102,134 +51067,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25882] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(374), 1, - anon_sym_BQUOTE, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1120), 1, - anon_sym_LBRACK, - ACTIONS(1122), 1, - anon_sym_DOT, - ACTIONS(1124), 1, - anon_sym_QMARK_DOT, - ACTIONS(1151), 1, - anon_sym_in, - ACTIONS(1155), 1, - anon_sym_QMARK, - ACTIONS(1157), 1, - anon_sym_AMP_AMP, - ACTIONS(1163), 1, - anon_sym_AMP, - ACTIONS(1165), 1, - anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1209), 1, - anon_sym_COMMA, - ACTIONS(1515), 1, - anon_sym_RBRACK, - ACTIONS(1132), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1159), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1167), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(454), 2, - sym_template_string, - sym_arguments, - ACTIONS(1147), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1161), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1153), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1171), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [25967] = 23, + [25806] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1209), 1, + ACTIONS(1265), 1, anon_sym_COMMA, - ACTIONS(1517), 1, - anon_sym_RPAREN, - ACTIONS(1132), 2, + ACTIONS(1571), 1, + anon_sym_COLON, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26052] = 3, + [25891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1382), 13, + ACTIONS(1339), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47243,7 +51146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1384), 24, + ACTIONS(1341), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -47268,10 +51171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26097] = 3, + [25936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1349), 13, + ACTIONS(1361), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47285,7 +51188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1351), 24, + ACTIONS(1363), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -47310,71 +51213,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26142] = 22, + [25981] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1265), 1, + anon_sym_COMMA, + ACTIONS(1573), 1, + anon_sym_RBRACE, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1519), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26225] = 3, + [26066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 13, + ACTIONS(575), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47388,7 +51292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1215), 24, + ACTIONS(577), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -47413,10 +51317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26270] = 3, + [26111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1353), 13, + ACTIONS(555), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47430,7 +51334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1355), 24, + ACTIONS(557), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -47455,10 +51359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26315] = 3, + [26156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1357), 13, + ACTIONS(1428), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47472,7 +51376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1359), 24, + ACTIONS(1430), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -47497,10 +51401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26360] = 3, + [26201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1265), 13, + ACTIONS(1365), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47514,7 +51418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1267), 24, + ACTIONS(1367), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -47539,10 +51443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26405] = 3, + [26246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1269), 13, + ACTIONS(1323), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47556,7 +51460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1198), 24, + ACTIONS(1325), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -47581,405 +51485,538 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26450] = 3, + [26291] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1299), 13, - anon_sym_STAR, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1208), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1212), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1214), 1, + anon_sym_AMP_AMP, + ACTIONS(1220), 1, anon_sym_AMP, + ACTIONS(1222), 1, anon_sym_PIPE, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1230), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1216), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1301), 24, - sym__automatic_semicolon, + ACTIONS(1384), 2, 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, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1204), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1210), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26495] = 3, + [26374] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1369), 13, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1579), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1575), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1577), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1180), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(1175), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1182), 10, + 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, - [26540] = 23, + [26440] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1291), 1, + anon_sym_COLON, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1587), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1589), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1593), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1595), 1, anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1599), 1, anon_sym_QMARK_QMARK, - ACTIONS(1209), 1, - anon_sym_COMMA, - ACTIONS(1521), 1, - anon_sym_RPAREN, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1579), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + ACTIONS(1591), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1577), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1585), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1597), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26625] = 22, + [26522] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1577), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1180), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1182), 10, + 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, + [26586] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1248), 1, + anon_sym_LBRACE, + ACTIONS(1603), 1, anon_sym_in, - ACTIONS(1473), 1, + ACTIONS(1607), 1, anon_sym_QMARK, - ACTIONS(1475), 1, + ACTIONS(1609), 1, anon_sym_AMP_AMP, - ACTIONS(1481), 1, + ACTIONS(1615), 1, anon_sym_AMP, - ACTIONS(1483), 1, + ACTIONS(1617), 1, anon_sym_PIPE, - ACTIONS(1487), 1, + ACTIONS(1621), 1, anon_sym_STAR_STAR, - ACTIONS(1491), 1, + ACTIONS(1625), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1192), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1477), 2, + ACTIONS(1611), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1485), 2, + ACTIONS(1619), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1467), 3, + ACTIONS(1601), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1479), 3, + ACTIONS(1613), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1471), 4, + ACTIONS(1605), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 5, + ACTIONS(1623), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26708] = 3, + [26668] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1311), 13, - anon_sym_STAR, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1593), 1, anon_sym_AMP, + ACTIONS(1180), 2, + anon_sym_QMARK, anon_sym_PIPE, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1579), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1577), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1182), 4, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + ACTIONS(1585), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1313), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [26744] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1186), 1, anon_sym_LBRACK, + ACTIONS(1188), 1, anon_sym_DOT, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, + anon_sym_in, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1579), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1180), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1577), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1585), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1182), 5, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + ACTIONS(1597), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26753] = 23, + [26816] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1242), 1, + anon_sym_COLON, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1587), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1589), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1593), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1595), 1, anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1599), 1, anon_sym_QMARK_QMARK, - ACTIONS(1209), 1, - anon_sym_COMMA, - ACTIONS(1523), 1, - anon_sym_RPAREN, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1579), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + ACTIONS(1591), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1577), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1585), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1597), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26838] = 3, + [26898] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1365), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1367), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1186), 1, anon_sym_LBRACK, + ACTIONS(1188), 1, anon_sym_DOT, + ACTIONS(1190), 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(1581), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1273), 13, + ACTIONS(1579), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1575), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, + ACTIONS(1577), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1180), 4, + anon_sym_in, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1585), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1275), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1182), 5, + 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_QMARK_QMARK, + ACTIONS(1597), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26928] = 3, + [26968] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1096), 13, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1180), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47993,1139 +52030,1334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1098), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1182), 13, + 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, - [26973] = 22, + [27028] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1280), 1, + anon_sym_LBRACE, + ACTIONS(1603), 1, anon_sym_in, - ACTIONS(1473), 1, + ACTIONS(1607), 1, anon_sym_QMARK, - ACTIONS(1475), 1, + ACTIONS(1609), 1, anon_sym_AMP_AMP, - ACTIONS(1481), 1, + ACTIONS(1615), 1, anon_sym_AMP, - ACTIONS(1483), 1, + ACTIONS(1617), 1, anon_sym_PIPE, - ACTIONS(1487), 1, + ACTIONS(1621), 1, anon_sym_STAR_STAR, - ACTIONS(1491), 1, + ACTIONS(1625), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1196), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1477), 2, + ACTIONS(1611), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1485), 2, + ACTIONS(1619), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1467), 3, + ACTIONS(1601), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1479), 3, + ACTIONS(1613), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1471), 4, + ACTIONS(1605), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 5, + ACTIONS(1623), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27056] = 3, + [27110] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1331), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1180), 1, anon_sym_QMARK, - 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(1333), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1184), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1186), 1, anon_sym_LBRACK, + ACTIONS(1188), 1, anon_sym_DOT, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, + ACTIONS(1603), 1, + anon_sym_in, + ACTIONS(1609), 1, anon_sym_AMP_AMP, + ACTIONS(1615), 1, + anon_sym_AMP, + ACTIONS(1617), 1, + anon_sym_PIPE, + ACTIONS(1621), 1, + anon_sym_STAR_STAR, + ACTIONS(1182), 2, + anon_sym_LBRACE, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1611), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1619), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1601), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1613), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1605), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1623), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27101] = 23, + [27190] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1587), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1589), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1593), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1595), 1, anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1599), 1, anon_sym_QMARK_QMARK, - ACTIONS(1209), 1, - anon_sym_COMMA, - ACTIONS(1525), 1, - anon_sym_RBRACK, - ACTIONS(1132), 2, + ACTIONS(1627), 1, + anon_sym_COLON, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1579), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + ACTIONS(1591), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1577), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1585), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1597), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27186] = 23, + [27272] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1248), 1, + anon_sym_COLON, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1587), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1589), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1593), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1595), 1, anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1599), 1, anon_sym_QMARK_QMARK, - ACTIONS(1209), 1, - anon_sym_COMMA, - ACTIONS(1527), 1, - anon_sym_RPAREN, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1579), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + ACTIONS(1591), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1577), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1585), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1597), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27271] = 3, + [27354] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1331), 13, - anon_sym_STAR, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1240), 1, + anon_sym_COLON, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1587), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1593), 1, anon_sym_AMP, + ACTIONS(1595), 1, anon_sym_PIPE, + ACTIONS(1599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1579), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1333), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(1591), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1577), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1585), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1597), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27316] = 23, + [27436] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1252), 1, + anon_sym_COLON, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1587), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1589), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1593), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1595), 1, anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1599), 1, anon_sym_QMARK_QMARK, - ACTIONS(1209), 1, - anon_sym_COMMA, - ACTIONS(1529), 1, - anon_sym_RBRACE, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1579), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + ACTIONS(1591), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1577), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1585), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1597), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27401] = 3, + [27518] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1279), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1186), 1, anon_sym_LBRACK, + ACTIONS(1188), 1, anon_sym_DOT, + ACTIONS(1190), 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(1581), 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, - [27446] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1331), 13, - anon_sym_STAR, + ACTIONS(1583), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1587), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1593), 1, anon_sym_AMP, + ACTIONS(1595), 1, anon_sym_PIPE, + ACTIONS(1599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1629), 1, + anon_sym_COLON, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1579), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1333), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(1591), 2, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1331), 13, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1575), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(1333), 24, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1577), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1585), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1597), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27536] = 23, + [27600] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1233), 1, - anon_sym_in, - ACTIONS(1235), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1243), 1, + ACTIONS(1242), 1, + anon_sym_LBRACE, + ACTIONS(1603), 1, + anon_sym_in, + ACTIONS(1607), 1, anon_sym_QMARK, - ACTIONS(1245), 1, + ACTIONS(1609), 1, anon_sym_AMP_AMP, - ACTIONS(1251), 1, + ACTIONS(1615), 1, anon_sym_AMP, - ACTIONS(1253), 1, + ACTIONS(1617), 1, anon_sym_PIPE, - ACTIONS(1257), 1, + ACTIONS(1621), 1, anon_sym_STAR_STAR, - ACTIONS(1261), 1, + ACTIONS(1625), 1, anon_sym_QMARK_QMARK, - ACTIONS(1531), 1, - anon_sym_SEMI, - ACTIONS(1533), 1, - sym__automatic_semicolon, - ACTIONS(1247), 2, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1611), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1255), 2, + ACTIONS(1619), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1263), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(554), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1229), 3, + ACTIONS(1601), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1249), 3, + ACTIONS(1613), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1237), 4, + ACTIONS(1605), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1259), 5, + ACTIONS(1623), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27621] = 6, + [27682] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 1, - anon_sym_RBRACK, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, ACTIONS(1190), 1, - anon_sym_EQ, - ACTIONS(1423), 1, - anon_sym_COMMA, - ACTIONS(1183), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + anon_sym_QMARK_DOT, + ACTIONS(1206), 1, + anon_sym_COLON, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, + anon_sym_in, + ACTIONS(1587), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1593), 1, anon_sym_AMP, + ACTIONS(1595), 1, anon_sym_PIPE, + ACTIONS(1599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1579), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1591), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1577), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1585), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1185), 20, + ACTIONS(1597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [27764] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, anon_sym_LPAREN, + ACTIONS(1186), 1, anon_sym_LBRACK, + ACTIONS(1188), 1, anon_sym_DOT, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1621), 1, + anon_sym_STAR_STAR, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1601), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1613), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1180), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1182), 10, + anon_sym_LBRACE, + 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, - [27671] = 22, + [27828] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1238), 1, + anon_sym_LBRACE, + ACTIONS(1603), 1, anon_sym_in, - ACTIONS(1473), 1, + ACTIONS(1607), 1, anon_sym_QMARK, - ACTIONS(1475), 1, + ACTIONS(1609), 1, anon_sym_AMP_AMP, - ACTIONS(1481), 1, + ACTIONS(1615), 1, anon_sym_AMP, - ACTIONS(1483), 1, + ACTIONS(1617), 1, anon_sym_PIPE, - ACTIONS(1487), 1, + ACTIONS(1621), 1, anon_sym_STAR_STAR, - ACTIONS(1491), 1, + ACTIONS(1625), 1, anon_sym_QMARK_QMARK, - ACTIONS(1535), 1, - anon_sym_COLON, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1477), 2, + ACTIONS(1611), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1485), 2, + ACTIONS(1619), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1467), 3, + ACTIONS(1601), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1479), 3, + ACTIONS(1613), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1471), 4, + ACTIONS(1605), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 5, + ACTIONS(1623), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27753] = 6, + [27910] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(436), 1, - anon_sym_EQ, - ACTIONS(1206), 1, - anon_sym_RBRACK, - ACTIONS(1443), 1, - anon_sym_COMMA, - ACTIONS(432), 13, - anon_sym_STAR, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1291), 1, + anon_sym_LBRACE, + ACTIONS(1603), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1607), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1609), 1, + anon_sym_AMP_AMP, + ACTIONS(1615), 1, anon_sym_AMP, + ACTIONS(1617), 1, anon_sym_PIPE, + ACTIONS(1621), 1, + anon_sym_STAR_STAR, + ACTIONS(1625), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1611), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1619), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1601), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1613), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1605), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(434), 20, + ACTIONS(1623), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [27992] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, anon_sym_LPAREN, + ACTIONS(1186), 1, anon_sym_LBRACK, + ACTIONS(1188), 1, anon_sym_DOT, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, + ACTIONS(1278), 1, + anon_sym_COLON, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, + anon_sym_in, + ACTIONS(1587), 1, + anon_sym_QMARK, + ACTIONS(1589), 1, anon_sym_AMP_AMP, + ACTIONS(1593), 1, + anon_sym_AMP, + ACTIONS(1595), 1, + anon_sym_PIPE, + ACTIONS(1599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1579), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1591), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1577), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1585), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1597), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27803] = 22, + [28074] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1208), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1212), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1214), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1220), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1222), 1, anon_sym_PIPE, - ACTIONS(1169), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1230), 1, anon_sym_QMARK_QMARK, - ACTIONS(1537), 1, + ACTIONS(1631), 1, anon_sym_RBRACK, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, + ACTIONS(1216), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1224), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1204), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1218), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1210), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1228), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27885] = 6, + [28156] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1142), 1, - anon_sym_RBRACK, - ACTIONS(1145), 1, - anon_sym_EQ, - ACTIONS(1428), 1, - anon_sym_COMMA, - ACTIONS(1138), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1140), 20, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, anon_sym_LPAREN, + ACTIONS(1186), 1, anon_sym_LBRACK, + ACTIONS(1188), 1, anon_sym_DOT, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, + ACTIONS(1293), 1, + anon_sym_LBRACE, + ACTIONS(1603), 1, + anon_sym_in, + ACTIONS(1607), 1, + anon_sym_QMARK, + ACTIONS(1609), 1, anon_sym_AMP_AMP, + ACTIONS(1615), 1, + anon_sym_AMP, + ACTIONS(1617), 1, + anon_sym_PIPE, + ACTIONS(1621), 1, + anon_sym_STAR_STAR, + ACTIONS(1625), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1611), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1619), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1601), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1613), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1605), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1623), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27935] = 22, + [28238] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1278), 1, + anon_sym_LBRACE, + ACTIONS(1603), 1, anon_sym_in, - ACTIONS(1473), 1, + ACTIONS(1607), 1, anon_sym_QMARK, - ACTIONS(1475), 1, + ACTIONS(1609), 1, anon_sym_AMP_AMP, - ACTIONS(1481), 1, + ACTIONS(1615), 1, anon_sym_AMP, - ACTIONS(1483), 1, + ACTIONS(1617), 1, anon_sym_PIPE, - ACTIONS(1487), 1, + ACTIONS(1621), 1, anon_sym_STAR_STAR, - ACTIONS(1491), 1, + ACTIONS(1625), 1, anon_sym_QMARK_QMARK, - ACTIONS(1539), 1, - anon_sym_COLON, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1477), 2, + ACTIONS(1611), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1485), 2, + ACTIONS(1619), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1467), 3, + ACTIONS(1601), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1479), 3, + ACTIONS(1613), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1471), 4, + ACTIONS(1605), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 5, + ACTIONS(1623), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28017] = 22, + [28320] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1151), 1, + ACTIONS(1280), 1, + anon_sym_COLON, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, anon_sym_in, - ACTIONS(1155), 1, + ACTIONS(1587), 1, anon_sym_QMARK, - ACTIONS(1157), 1, + ACTIONS(1589), 1, anon_sym_AMP_AMP, - ACTIONS(1163), 1, + ACTIONS(1593), 1, anon_sym_AMP, - ACTIONS(1165), 1, + ACTIONS(1595), 1, anon_sym_PIPE, - ACTIONS(1169), 1, - anon_sym_STAR_STAR, - ACTIONS(1173), 1, + ACTIONS(1599), 1, anon_sym_QMARK_QMARK, - ACTIONS(1541), 1, - anon_sym_RBRACK, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1159), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1167), 2, + ACTIONS(1579), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + ACTIONS(1591), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1147), 3, + ACTIONS(1575), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1161), 3, + ACTIONS(1577), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1153), 4, + ACTIONS(1585), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1171), 5, + ACTIONS(1597), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28099] = 22, + [28402] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1252), 1, + anon_sym_LBRACE, + ACTIONS(1603), 1, anon_sym_in, - ACTIONS(1473), 1, + ACTIONS(1607), 1, anon_sym_QMARK, - ACTIONS(1475), 1, + ACTIONS(1609), 1, anon_sym_AMP_AMP, - ACTIONS(1481), 1, + ACTIONS(1615), 1, anon_sym_AMP, - ACTIONS(1483), 1, + ACTIONS(1617), 1, anon_sym_PIPE, - ACTIONS(1487), 1, + ACTIONS(1621), 1, anon_sym_STAR_STAR, - ACTIONS(1491), 1, + ACTIONS(1625), 1, anon_sym_QMARK_QMARK, - ACTIONS(1543), 1, - anon_sym_COLON, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1477), 2, + ACTIONS(1611), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1485), 2, + ACTIONS(1619), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1467), 3, + ACTIONS(1601), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1479), 3, + ACTIONS(1613), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1471), 4, + ACTIONS(1605), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 5, + ACTIONS(1623), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28181] = 22, + [28484] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1603), 1, anon_sym_in, - ACTIONS(1473), 1, - anon_sym_QMARK, - ACTIONS(1475), 1, + ACTIONS(1609), 1, anon_sym_AMP_AMP, - ACTIONS(1481), 1, + ACTIONS(1615), 1, anon_sym_AMP, - ACTIONS(1483), 1, - anon_sym_PIPE, - ACTIONS(1487), 1, + ACTIONS(1621), 1, anon_sym_STAR_STAR, - ACTIONS(1491), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1545), 1, - anon_sym_LBRACE, - ACTIONS(1132), 2, + ACTIONS(1180), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1477), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1485), 2, + ACTIONS(1619), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1467), 3, + ACTIONS(1601), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1479), 3, + ACTIONS(1613), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1471), 4, + ACTIONS(1182), 4, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + ACTIONS(1605), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 5, + ACTIONS(1623), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28263] = 6, + [28560] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1054), 1, - anon_sym_EQ, - ACTIONS(1066), 1, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1246), 1, + anon_sym_COLON, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, anon_sym_in, - ACTIONS(1069), 1, - anon_sym_of, - ACTIONS(1017), 12, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1587), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1593), 1, anon_sym_AMP, + ACTIONS(1595), 1, anon_sym_PIPE, + ACTIONS(1599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1579), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1591), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1577), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1585), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1019), 20, + ACTIONS(1597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [28642] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, anon_sym_LPAREN, + ACTIONS(1186), 1, anon_sym_LBRACK, + ACTIONS(1188), 1, anon_sym_DOT, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, + anon_sym_in, + ACTIONS(1587), 1, + anon_sym_QMARK, + ACTIONS(1589), 1, anon_sym_AMP_AMP, + ACTIONS(1593), 1, + anon_sym_AMP, + ACTIONS(1595), 1, + anon_sym_PIPE, + ACTIONS(1599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1633), 1, + anon_sym_COLON, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1579), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1591), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1577), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1585), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1597), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28312] = 6, + [28724] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 1, - anon_sym_EQ, - ACTIONS(1425), 1, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1603), 1, anon_sym_in, - ACTIONS(1428), 1, - anon_sym_of, - ACTIONS(1138), 12, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1621), 1, + anon_sym_STAR_STAR, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1619), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1180), 3, anon_sym_QMARK, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1601), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1613), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1605), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1140), 20, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1182), 5, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + ACTIONS(1623), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28361] = 6, + [28796] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(436), 1, + ACTIONS(523), 1, anon_sym_EQ, - ACTIONS(1440), 1, - anon_sym_in, - ACTIONS(1443), 1, - anon_sym_of, - ACTIONS(432), 12, + ACTIONS(1269), 1, + anon_sym_RBRACK, + ACTIONS(1511), 1, + anon_sym_COMMA, + ACTIONS(519), 13, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -49137,7 +53369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(434), 20, + ACTIONS(521), 20, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -49158,75 +53390,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28410] = 21, + [28846] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1231), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1235), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1239), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1241), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1206), 1, + anon_sym_LBRACE, + ACTIONS(1603), 1, anon_sym_in, - ACTIONS(1473), 1, + ACTIONS(1607), 1, anon_sym_QMARK, - ACTIONS(1475), 1, + ACTIONS(1609), 1, anon_sym_AMP_AMP, - ACTIONS(1481), 1, + ACTIONS(1615), 1, anon_sym_AMP, - ACTIONS(1483), 1, + ACTIONS(1617), 1, anon_sym_PIPE, - ACTIONS(1487), 1, + ACTIONS(1621), 1, anon_sym_STAR_STAR, - ACTIONS(1491), 1, + ACTIONS(1625), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1477), 2, + ACTIONS(1611), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1485), 2, + ACTIONS(1619), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(554), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1467), 3, + ACTIONS(1601), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1479), 3, + ACTIONS(1613), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1471), 4, + ACTIONS(1605), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 5, + ACTIONS(1623), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28489] = 6, + [28928] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, ACTIONS(1190), 1, - anon_sym_EQ, - ACTIONS(1420), 1, + anon_sym_QMARK_DOT, + ACTIONS(1238), 1, + anon_sym_COLON, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, anon_sym_in, - ACTIONS(1423), 1, - anon_sym_of, - ACTIONS(1183), 12, + ACTIONS(1587), 1, + anon_sym_QMARK, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1593), 1, + anon_sym_AMP, + ACTIONS(1595), 1, + anon_sym_PIPE, + ACTIONS(1599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1579), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1591), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1577), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1585), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29010] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 1, + anon_sym_RBRACK, + ACTIONS(1289), 1, + anon_sym_EQ, + ACTIONS(1506), 1, + anon_sym_COMMA, + ACTIONS(1282), 13, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -49238,7 +53533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1185), 20, + ACTIONS(1284), 20, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -49259,181 +53554,1253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28538] = 21, + [29060] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(374), 1, + ACTIONS(499), 1, anon_sym_BQUOTE, - ACTIONS(1118), 1, + ACTIONS(1184), 1, anon_sym_LPAREN, - ACTIONS(1120), 1, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1122), 1, + ACTIONS(1188), 1, anon_sym_DOT, - ACTIONS(1124), 1, + ACTIONS(1190), 1, anon_sym_QMARK_DOT, - ACTIONS(1469), 1, + ACTIONS(1244), 1, + anon_sym_LBRACE, + ACTIONS(1603), 1, anon_sym_in, - ACTIONS(1473), 1, + ACTIONS(1607), 1, anon_sym_QMARK, - ACTIONS(1475), 1, + ACTIONS(1609), 1, anon_sym_AMP_AMP, - ACTIONS(1481), 1, + ACTIONS(1615), 1, anon_sym_AMP, - ACTIONS(1483), 1, + ACTIONS(1617), 1, anon_sym_PIPE, - ACTIONS(1487), 1, + ACTIONS(1621), 1, anon_sym_STAR_STAR, - ACTIONS(1491), 1, + ACTIONS(1625), 1, anon_sym_QMARK_QMARK, - ACTIONS(1132), 2, + ACTIONS(1192), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1477), 2, + ACTIONS(1611), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1485), 2, + ACTIONS(1619), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(454), 2, + STATE(520), 2, sym_template_string, sym_arguments, - ACTIONS(1467), 3, + ACTIONS(1601), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1479), 3, + ACTIONS(1613), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1471), 4, + ACTIONS(1605), 4, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 5, + ACTIONS(1623), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28617] = 23, + [29142] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(95), 1, - anon_sym_STAR, - ACTIONS(97), 1, - anon_sym_COMMA, - ACTIONS(105), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(370), 1, - anon_sym_DQUOTE, - ACTIONS(372), 1, - anon_sym_SQUOTE, - ACTIONS(1549), 1, - anon_sym_LBRACE, - ACTIONS(1551), 1, - anon_sym_RBRACE, - ACTIONS(1553), 1, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_async, - ACTIONS(1557), 1, - anon_sym_static, - STATE(704), 1, - aux_sym_export_statement_repeat1, - STATE(766), 1, - sym_decorator, - STATE(1070), 1, - aux_sym_object_repeat1, - STATE(1074), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(109), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1547), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1559), 2, - anon_sym_get, - anon_sym_set, - STATE(993), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1067), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1069), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1299), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [28698] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(95), 1, - anon_sym_STAR, - ACTIONS(97), 1, - anon_sym_COMMA, - ACTIONS(105), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(370), 1, - anon_sym_DQUOTE, - ACTIONS(372), 1, - anon_sym_SQUOTE, - ACTIONS(1549), 1, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1293), 1, + anon_sym_COLON, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, + anon_sym_in, + ACTIONS(1587), 1, + anon_sym_QMARK, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1593), 1, + anon_sym_AMP, + ACTIONS(1595), 1, + anon_sym_PIPE, + ACTIONS(1599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1579), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1591), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1577), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1585), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29224] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1258), 1, + anon_sym_RBRACK, + ACTIONS(1261), 1, + anon_sym_EQ, + ACTIONS(1501), 1, + anon_sym_COMMA, + ACTIONS(1254), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1256), 20, + 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, + [29274] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1621), 1, + anon_sym_STAR_STAR, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1619), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1601), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1613), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1180), 8, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1182), 10, + anon_sym_LBRACE, + 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, + [29340] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1208), 1, + anon_sym_in, + ACTIONS(1212), 1, + anon_sym_QMARK, + ACTIONS(1214), 1, + anon_sym_AMP_AMP, + ACTIONS(1220), 1, + anon_sym_AMP, + ACTIONS(1222), 1, + anon_sym_PIPE, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1230), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1635), 1, + anon_sym_RBRACK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1216), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1224), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1204), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1218), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1210), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1228), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29422] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1263), 1, + anon_sym_LBRACE, + ACTIONS(1603), 1, + anon_sym_in, + ACTIONS(1607), 1, + anon_sym_QMARK, + ACTIONS(1609), 1, + anon_sym_AMP_AMP, + ACTIONS(1615), 1, + anon_sym_AMP, + ACTIONS(1617), 1, + anon_sym_PIPE, + ACTIONS(1621), 1, + anon_sym_STAR_STAR, + ACTIONS(1625), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1611), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1619), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1601), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1613), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1605), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1623), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29504] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1180), 1, + anon_sym_QMARK, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, + anon_sym_in, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1593), 1, + anon_sym_AMP, + ACTIONS(1595), 1, + anon_sym_PIPE, + ACTIONS(1182), 2, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1579), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1591), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1577), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1585), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29584] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1621), 1, + anon_sym_STAR_STAR, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1619), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1601), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1613), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1180), 4, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1605), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1182), 5, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + ACTIONS(1623), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29654] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, + anon_sym_in, + ACTIONS(1587), 1, + anon_sym_QMARK, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1593), 1, + anon_sym_AMP, + ACTIONS(1595), 1, + anon_sym_PIPE, + ACTIONS(1599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1637), 1, + anon_sym_COLON, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1579), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1591), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1577), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1585), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29736] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1621), 1, + anon_sym_STAR_STAR, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1180), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1182), 13, + anon_sym_LBRACE, + anon_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, + [29796] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1603), 1, + anon_sym_in, + ACTIONS(1607), 1, + anon_sym_QMARK, + ACTIONS(1609), 1, + anon_sym_AMP_AMP, + ACTIONS(1615), 1, + anon_sym_AMP, + ACTIONS(1617), 1, + anon_sym_PIPE, + ACTIONS(1621), 1, + anon_sym_STAR_STAR, + ACTIONS(1625), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1639), 1, + anon_sym_LBRACE, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1611), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1619), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1601), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1613), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1605), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1623), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29878] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1240), 1, + anon_sym_LBRACE, + ACTIONS(1603), 1, + anon_sym_in, + ACTIONS(1607), 1, + anon_sym_QMARK, + ACTIONS(1609), 1, + anon_sym_AMP_AMP, + ACTIONS(1615), 1, + anon_sym_AMP, + ACTIONS(1617), 1, + anon_sym_PIPE, + ACTIONS(1621), 1, + anon_sym_STAR_STAR, + ACTIONS(1625), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1611), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1619), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1601), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1613), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1605), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1623), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29960] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1263), 1, + anon_sym_COLON, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, + anon_sym_in, + ACTIONS(1587), 1, + anon_sym_QMARK, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1593), 1, + anon_sym_AMP, + ACTIONS(1595), 1, + anon_sym_PIPE, + ACTIONS(1599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1579), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1591), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1577), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1585), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30042] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1244), 1, + anon_sym_COLON, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, + anon_sym_in, + ACTIONS(1587), 1, + anon_sym_QMARK, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1593), 1, + anon_sym_AMP, + ACTIONS(1595), 1, + anon_sym_PIPE, + ACTIONS(1599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1579), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1591), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1577), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1585), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30124] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1246), 1, + anon_sym_LBRACE, + ACTIONS(1603), 1, + anon_sym_in, + ACTIONS(1607), 1, + anon_sym_QMARK, + ACTIONS(1609), 1, + anon_sym_AMP_AMP, + ACTIONS(1615), 1, + anon_sym_AMP, + ACTIONS(1617), 1, + anon_sym_PIPE, + ACTIONS(1621), 1, + anon_sym_STAR_STAR, + ACTIONS(1625), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1611), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1619), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1601), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1613), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1605), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1623), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30206] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1112), 1, + anon_sym_EQ, + ACTIONS(1118), 1, + anon_sym_in, + ACTIONS(1121), 1, + anon_sym_of, + ACTIONS(1079), 12, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1081), 20, + 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, + [30255] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1261), 1, + anon_sym_EQ, + ACTIONS(1498), 1, + anon_sym_in, + ACTIONS(1501), 1, + anon_sym_of, + ACTIONS(1254), 12, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1256), 20, + 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, + [30304] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1301), 1, + anon_sym_LPAREN, + ACTIONS(1305), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, + anon_sym_DOT, + ACTIONS(1311), 1, + anon_sym_QMARK_DOT, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, + anon_sym_in, + ACTIONS(1587), 1, + anon_sym_QMARK, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1593), 1, + anon_sym_AMP, + ACTIONS(1595), 1, + anon_sym_PIPE, + ACTIONS(1599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1579), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1591), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(611), 2, + sym_template_string, + sym_arguments, + ACTIONS(1575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1577), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1585), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30383] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(499), 1, + anon_sym_BQUOTE, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1186), 1, + anon_sym_LBRACK, + ACTIONS(1188), 1, + anon_sym_DOT, + ACTIONS(1190), 1, + anon_sym_QMARK_DOT, + ACTIONS(1581), 1, + anon_sym_STAR_STAR, + ACTIONS(1583), 1, + anon_sym_in, + ACTIONS(1587), 1, + anon_sym_QMARK, + ACTIONS(1589), 1, + anon_sym_AMP_AMP, + ACTIONS(1593), 1, + anon_sym_AMP, + ACTIONS(1595), 1, + anon_sym_PIPE, + ACTIONS(1599), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1579), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1591), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(520), 2, + sym_template_string, + sym_arguments, + ACTIONS(1575), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1577), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1585), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1597), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30462] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1168), 1, + anon_sym_EQ, + ACTIONS(1079), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1081), 21, anon_sym_LBRACE, - ACTIONS(1553), 1, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1563), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [30507] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(523), 1, + anon_sym_EQ, + ACTIONS(1508), 1, + anon_sym_in, + ACTIONS(1511), 1, + anon_sym_of, + ACTIONS(519), 12, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(521), 20, + 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, + [30556] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1289), 1, + anon_sym_EQ, + ACTIONS(1503), 1, + anon_sym_in, + ACTIONS(1506), 1, + anon_sym_of, + ACTIONS(1282), 12, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1284), 20, + 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, + [30605] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_AT, + ACTIONS(95), 1, + anon_sym_STAR, + ACTIONS(97), 1, + anon_sym_COMMA, + ACTIONS(107), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(344), 1, + anon_sym_SQUOTE, + ACTIONS(1643), 1, + anon_sym_LBRACE, + ACTIONS(1645), 1, anon_sym_RBRACE, - ACTIONS(1565), 1, + ACTIONS(1647), 1, + anon_sym_LBRACK, + ACTIONS(1649), 1, anon_sym_async, - ACTIONS(1567), 1, + ACTIONS(1651), 1, anon_sym_static, - STATE(704), 1, + STATE(777), 1, aux_sym_export_statement_repeat1, - STATE(766), 1, + STATE(836), 1, sym_decorator, - STATE(1042), 1, + STATE(1091), 1, aux_sym_object_repeat1, - STATE(1074), 1, + STATE(1097), 1, aux_sym_object_pattern_repeat1, - ACTIONS(109), 2, + ACTIONS(111), 2, sym_number, sym_private_property_identifier, - ACTIONS(1561), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1569), 2, + ACTIONS(1653), 2, anon_sym_get, anon_sym_set, - STATE(1040), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1067), 3, + ACTIONS(1641), 3, + anon_sym_export, + anon_sym_await, + sym_identifier, + STATE(1079), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1069), 3, + STATE(1080), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1086), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1299), 3, + STATE(1356), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [28779] = 23, + [30687] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -49442,56 +54809,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1549), 1, + ACTIONS(1643), 1, anon_sym_LBRACE, - ACTIONS(1553), 1, + ACTIONS(1647), 1, anon_sym_LBRACK, - ACTIONS(1573), 1, + ACTIONS(1657), 1, anon_sym_RBRACE, - ACTIONS(1575), 1, + ACTIONS(1659), 1, anon_sym_async, - ACTIONS(1577), 1, + ACTIONS(1661), 1, anon_sym_static, - STATE(704), 1, + STATE(777), 1, aux_sym_export_statement_repeat1, - STATE(766), 1, + STATE(836), 1, sym_decorator, - STATE(1042), 1, + STATE(1063), 1, aux_sym_object_repeat1, - STATE(1074), 1, + STATE(1097), 1, aux_sym_object_pattern_repeat1, - ACTIONS(109), 2, + ACTIONS(111), 2, sym_number, sym_private_property_identifier, - ACTIONS(1571), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1579), 2, + ACTIONS(1663), 2, anon_sym_get, anon_sym_set, - STATE(1040), 3, + ACTIONS(1655), 3, + anon_sym_export, + anon_sym_await, + sym_identifier, + STATE(1065), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1067), 3, + STATE(1079), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1069), 3, + STATE(1086), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1299), 3, + STATE(1356), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [28860] = 23, + [30769] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -49500,56 +54868,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1549), 1, + ACTIONS(1643), 1, anon_sym_LBRACE, - ACTIONS(1553), 1, + ACTIONS(1647), 1, anon_sym_LBRACK, - ACTIONS(1583), 1, + ACTIONS(1667), 1, anon_sym_RBRACE, - ACTIONS(1585), 1, + ACTIONS(1669), 1, anon_sym_async, - ACTIONS(1587), 1, + ACTIONS(1671), 1, anon_sym_static, - STATE(704), 1, + STATE(777), 1, aux_sym_export_statement_repeat1, - STATE(766), 1, + STATE(836), 1, sym_decorator, - STATE(1070), 1, + STATE(1063), 1, aux_sym_object_repeat1, - STATE(1074), 1, + STATE(1097), 1, aux_sym_object_pattern_repeat1, - ACTIONS(109), 2, + ACTIONS(111), 2, sym_number, sym_private_property_identifier, - ACTIONS(1581), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1589), 2, + ACTIONS(1673), 2, anon_sym_get, anon_sym_set, - STATE(993), 3, + ACTIONS(1665), 3, + anon_sym_export, + anon_sym_await, + sym_identifier, + STATE(1065), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1067), 3, + STATE(1079), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1069), 3, + STATE(1086), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1299), 3, + STATE(1356), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [28941] = 23, + [30851] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -49558,56 +54927,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1549), 1, + ACTIONS(1643), 1, anon_sym_LBRACE, - ACTIONS(1553), 1, + ACTIONS(1647), 1, anon_sym_LBRACK, - ACTIONS(1593), 1, + ACTIONS(1677), 1, anon_sym_RBRACE, - ACTIONS(1595), 1, + ACTIONS(1679), 1, anon_sym_async, - ACTIONS(1597), 1, + ACTIONS(1681), 1, anon_sym_static, - STATE(704), 1, + STATE(777), 1, aux_sym_export_statement_repeat1, - STATE(766), 1, + STATE(836), 1, sym_decorator, - STATE(1042), 1, + STATE(1091), 1, aux_sym_object_repeat1, - STATE(1074), 1, + STATE(1097), 1, aux_sym_object_pattern_repeat1, - ACTIONS(109), 2, + ACTIONS(111), 2, sym_number, sym_private_property_identifier, - ACTIONS(1591), 2, + ACTIONS(1683), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1675), 3, anon_sym_export, + anon_sym_await, sym_identifier, - ACTIONS(1599), 2, + STATE(1079), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1080), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1086), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1356), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [30933] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_AT, + ACTIONS(95), 1, + anon_sym_STAR, + ACTIONS(97), 1, + anon_sym_COMMA, + ACTIONS(107), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(344), 1, + anon_sym_SQUOTE, + ACTIONS(1643), 1, + anon_sym_LBRACE, + ACTIONS(1647), 1, + anon_sym_LBRACK, + ACTIONS(1687), 1, + anon_sym_RBRACE, + ACTIONS(1689), 1, + anon_sym_async, + ACTIONS(1691), 1, + anon_sym_static, + STATE(777), 1, + aux_sym_export_statement_repeat1, + STATE(836), 1, + sym_decorator, + STATE(1063), 1, + aux_sym_object_repeat1, + STATE(1097), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(111), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1693), 2, anon_sym_get, anon_sym_set, - STATE(1040), 3, + ACTIONS(1685), 3, + anon_sym_export, + anon_sym_await, + sym_identifier, + STATE(1065), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1067), 3, + STATE(1079), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1069), 3, + STATE(1086), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1299), 3, + STATE(1356), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [29022] = 23, + [31015] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, @@ -49616,472 +55045,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1549), 1, + ACTIONS(1643), 1, anon_sym_LBRACE, - ACTIONS(1553), 1, + ACTIONS(1647), 1, anon_sym_LBRACK, - ACTIONS(1603), 1, + ACTIONS(1697), 1, anon_sym_RBRACE, - ACTIONS(1605), 1, + ACTIONS(1699), 1, anon_sym_async, - ACTIONS(1607), 1, + ACTIONS(1701), 1, anon_sym_static, - STATE(704), 1, + STATE(777), 1, aux_sym_export_statement_repeat1, - STATE(766), 1, + STATE(836), 1, sym_decorator, - STATE(1042), 1, + STATE(1063), 1, aux_sym_object_repeat1, - STATE(1074), 1, + STATE(1097), 1, aux_sym_object_pattern_repeat1, - ACTIONS(109), 2, + ACTIONS(111), 2, sym_number, sym_private_property_identifier, - ACTIONS(1601), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1609), 2, + ACTIONS(1703), 2, anon_sym_get, anon_sym_set, - STATE(1040), 3, + ACTIONS(1695), 3, + anon_sym_export, + anon_sym_await, + sym_identifier, + STATE(1065), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1067), 3, + STATE(1079), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1069), 3, + STATE(1086), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1299), 3, + STATE(1356), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [29103] = 20, + [31097] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_AT, ACTIONS(95), 1, anon_sym_STAR, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1549), 1, + ACTIONS(1643), 1, anon_sym_LBRACE, - ACTIONS(1553), 1, + ACTIONS(1647), 1, anon_sym_LBRACK, - ACTIONS(1616), 1, + ACTIONS(1710), 1, anon_sym_async, - ACTIONS(1618), 1, + ACTIONS(1712), 1, anon_sym_static, - STATE(704), 1, + STATE(777), 1, aux_sym_export_statement_repeat1, - STATE(766), 1, + STATE(836), 1, sym_decorator, - ACTIONS(109), 2, + ACTIONS(111), 2, sym_number, sym_private_property_identifier, - ACTIONS(1611), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1613), 2, + ACTIONS(1707), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1620), 2, + ACTIONS(1714), 2, anon_sym_get, anon_sym_set, - STATE(1069), 3, + ACTIONS(1705), 3, + anon_sym_export, + anon_sym_await, + sym_identifier, + STATE(1086), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1120), 3, + STATE(1326), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1248), 3, + STATE(1339), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1299), 3, + STATE(1356), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [29176] = 14, + [31171] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(598), 1, + ACTIONS(691), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1549), 1, + ACTIONS(1643), 1, anon_sym_LBRACE, - ACTIONS(1553), 1, + ACTIONS(1647), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1718), 1, anon_sym_COMMA, - ACTIONS(1626), 1, + ACTIONS(1720), 1, anon_sym_RBRACE, - STATE(1074), 1, + STATE(1062), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1628), 2, + ACTIONS(1722), 2, sym_number, sym_private_property_identifier, - STATE(1067), 3, + STATE(1066), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1299), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(1337), 3, + STATE(1355), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1622), 6, + STATE(1356), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(1716), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [29231] = 14, + [31227] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(598), 1, + ACTIONS(691), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1549), 1, + ACTIONS(1643), 1, anon_sym_LBRACE, - ACTIONS(1553), 1, + ACTIONS(1647), 1, anon_sym_LBRACK, - ACTIONS(1624), 1, + ACTIONS(1718), 1, anon_sym_COMMA, - ACTIONS(1632), 1, + ACTIONS(1726), 1, anon_sym_RBRACE, - STATE(1043), 1, + STATE(1097), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1628), 2, + ACTIONS(1722), 2, sym_number, sym_private_property_identifier, - STATE(1039), 3, + STATE(1079), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1299), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(1337), 3, + STATE(1355), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1630), 6, + STATE(1356), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(1724), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [29286] = 12, + [31283] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(598), 1, + ACTIONS(691), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1549), 1, + ACTIONS(1643), 1, anon_sym_LBRACE, - ACTIONS(1553), 1, + ACTIONS(1647), 1, anon_sym_LBRACK, - ACTIONS(1628), 2, + ACTIONS(1722), 2, sym_number, sym_private_property_identifier, - ACTIONS(1636), 2, + ACTIONS(1730), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1120), 3, + STATE(1326), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1299), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(1337), 3, + STATE(1355), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1634), 6, + STATE(1356), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(1728), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [29336] = 17, + [31334] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_AT, ACTIONS(95), 1, anon_sym_STAR, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(607), 1, + ACTIONS(700), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1644), 1, + ACTIONS(1738), 1, anon_sym_async, - ACTIONS(1648), 1, + ACTIONS(1742), 1, anon_sym_static, - STATE(704), 1, + STATE(777), 1, aux_sym_export_statement_repeat1, - STATE(766), 1, + STATE(836), 1, sym_decorator, - ACTIONS(1638), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1640), 2, + ACTIONS(1734), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1646), 2, + ACTIONS(1740), 2, sym_number, sym_private_property_identifier, - ACTIONS(1650), 2, + ACTIONS(1744), 2, anon_sym_get, anon_sym_set, - STATE(1022), 3, + ACTIONS(1732), 3, + anon_sym_export, + anon_sym_await, + sym_identifier, + STATE(1148), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1248), 3, + STATE(1339), 3, sym_spread_element, sym_method_definition, sym_pair, - [29396] = 16, + [31395] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(743), 1, + ACTIONS(822), 1, anon_sym_async, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1746), 1, anon_sym_STAR, - ACTIONS(1654), 1, + ACTIONS(1748), 1, anon_sym_RBRACE, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - STATE(1025), 1, + STATE(1060), 1, aux_sym_object_repeat1, - STATE(1026), 1, + STATE(1118), 1, aux_sym_object_pattern_repeat1, - ACTIONS(737), 2, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(745), 2, + ACTIONS(824), 2, anon_sym_get, anon_sym_set, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(741), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - [29452] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - anon_sym_DQUOTE, - ACTIONS(77), 1, - anon_sym_SQUOTE, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(95), 1, - anon_sym_STAR, - ACTIONS(1662), 1, - anon_sym_RBRACE, - ACTIONS(1664), 1, - anon_sym_LBRACK, - ACTIONS(1666), 1, - anon_sym_async, - ACTIONS(1670), 1, - anon_sym_static, - STATE(678), 1, - aux_sym_class_body_repeat1, - STATE(707), 1, - aux_sym_export_statement_repeat1, - STATE(755), 1, - sym_method_definition, - STATE(766), 1, - sym_decorator, - STATE(1114), 1, - sym_field_definition, - ACTIONS(1660), 2, + ACTIONS(820), 4, anon_sym_export, + anon_sym_await, sym_identifier, - ACTIONS(1668), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1672), 2, - anon_sym_get, - anon_sym_set, - STATE(871), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [29512] = 15, + anon_sym_static, + [31452] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(370), 1, + ACTIONS(183), 1, + anon_sym_RBRACE, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(675), 1, - anon_sym_RBRACE, - ACTIONS(1642), 1, + ACTIONS(822), 1, + anon_sym_async, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1746), 1, anon_sym_STAR, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - STATE(1025), 1, + STATE(1060), 1, aux_sym_object_repeat1, - STATE(1026), 1, + STATE(1118), 1, aux_sym_object_pattern_repeat1, - ACTIONS(737), 2, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(745), 2, + ACTIONS(824), 2, anon_sym_get, anon_sym_set, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 4, + ACTIONS(820), 4, anon_sym_export, - anon_sym_async, + anon_sym_await, sym_identifier, anon_sym_static, - [29566] = 16, + [31509] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(97), 1, - anon_sym_COMMA, - ACTIONS(370), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(77), 1, anon_sym_SQUOTE, - ACTIONS(743), 1, - anon_sym_async, - ACTIONS(1642), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(87), 1, + anon_sym_AT, + ACTIONS(95), 1, anon_sym_STAR, - ACTIONS(1658), 1, - anon_sym_EQ, - ACTIONS(1674), 1, + ACTIONS(1756), 1, anon_sym_RBRACE, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - STATE(1082), 1, - aux_sym_object_repeat1, - ACTIONS(737), 2, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_async, + ACTIONS(1764), 1, + anon_sym_static, + STATE(750), 1, + aux_sym_class_body_repeat1, + STATE(780), 1, + aux_sym_export_statement_repeat1, + STATE(821), 1, + sym_method_definition, + STATE(836), 1, + sym_decorator, + STATE(1262), 1, + sym_field_definition, + ACTIONS(1762), 2, sym_number, sym_private_property_identifier, - ACTIONS(745), 2, + ACTIONS(1766), 2, anon_sym_get, anon_sym_set, - ACTIONS(1656), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(741), 3, + ACTIONS(1754), 3, anon_sym_export, + anon_sym_await, sym_identifier, - anon_sym_static, - STATE(1221), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [29622] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(97), 1, - anon_sym_COMMA, - ACTIONS(370), 1, - anon_sym_DQUOTE, - ACTIONS(372), 1, - anon_sym_SQUOTE, - ACTIONS(1642), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, - anon_sym_STAR, - ACTIONS(1658), 1, - anon_sym_EQ, - ACTIONS(1674), 1, - anon_sym_RBRACE, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - STATE(1082), 1, - aux_sym_object_repeat1, - ACTIONS(737), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(745), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1656), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1221), 3, + STATE(938), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 4, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - [29676] = 18, + [31570] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(75), 1, @@ -50092,238 +55452,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(95), 1, anon_sym_STAR, - ACTIONS(1664), 1, + ACTIONS(1758), 1, anon_sym_LBRACK, - ACTIONS(1666), 1, + ACTIONS(1760), 1, anon_sym_async, - ACTIONS(1670), 1, + ACTIONS(1764), 1, anon_sym_static, - ACTIONS(1676), 1, + ACTIONS(1768), 1, anon_sym_RBRACE, - STATE(673), 1, + STATE(751), 1, aux_sym_class_body_repeat1, - STATE(707), 1, + STATE(780), 1, aux_sym_export_statement_repeat1, - STATE(755), 1, + STATE(821), 1, sym_method_definition, - STATE(766), 1, + STATE(836), 1, sym_decorator, - STATE(1114), 1, + STATE(1262), 1, sym_field_definition, - ACTIONS(1660), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1668), 2, + ACTIONS(1762), 2, sym_number, sym_private_property_identifier, - ACTIONS(1672), 2, + ACTIONS(1766), 2, anon_sym_get, anon_sym_set, - STATE(871), 3, + ACTIONS(1754), 3, + anon_sym_export, + anon_sym_await, + sym_identifier, + STATE(938), 3, sym_string, sym__property_name, sym_computed_property_name, - [29736] = 18, + [31631] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1681), 1, - anon_sym_STAR, - ACTIONS(1684), 1, + ACTIONS(97), 1, + anon_sym_COMMA, + ACTIONS(157), 1, anon_sym_RBRACE, - ACTIONS(1686), 1, - anon_sym_LBRACK, - ACTIONS(1689), 1, - anon_sym_async, - ACTIONS(1692), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(1695), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1701), 1, - anon_sym_AT, - ACTIONS(1704), 1, - anon_sym_static, - STATE(673), 1, - aux_sym_class_body_repeat1, - STATE(707), 1, - aux_sym_export_statement_repeat1, - STATE(755), 1, - sym_method_definition, - STATE(766), 1, - sym_decorator, - STATE(1114), 1, - sym_field_definition, - ACTIONS(1678), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1698), 2, + ACTIONS(1736), 1, + anon_sym_LBRACK, + ACTIONS(1746), 1, + anon_sym_STAR, + ACTIONS(1752), 1, + anon_sym_EQ, + STATE(1117), 1, + aux_sym_object_repeat1, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(1707), 2, + ACTIONS(824), 2, anon_sym_get, anon_sym_set, - STATE(871), 3, + ACTIONS(1750), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - [29796] = 16, + ACTIONS(820), 5, + anon_sym_export, + anon_sym_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + [31686] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(370), 1, + ACTIONS(157), 1, + anon_sym_RBRACE, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(743), 1, + ACTIONS(822), 1, anon_sym_async, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1746), 1, anon_sym_STAR, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - ACTIONS(1710), 1, - anon_sym_RBRACE, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - STATE(1082), 1, + STATE(1117), 1, aux_sym_object_repeat1, - ACTIONS(737), 2, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(745), 2, + ACTIONS(824), 2, anon_sym_get, anon_sym_set, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(741), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - [29852] = 16, + ACTIONS(820), 4, + anon_sym_export, + anon_sym_await, + sym_identifier, + anon_sym_static, + [31743] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(370), 1, + ACTIONS(183), 1, + anon_sym_RBRACE, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(643), 1, - anon_sym_RBRACE, - ACTIONS(743), 1, - anon_sym_async, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1746), 1, anon_sym_STAR, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - STATE(1082), 1, + STATE(1060), 1, aux_sym_object_repeat1, - ACTIONS(737), 2, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(745), 2, + ACTIONS(824), 2, anon_sym_get, anon_sym_set, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(741), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - [29908] = 15, + ACTIONS(820), 5, + anon_sym_export, + anon_sym_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + [31798] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(370), 1, + ACTIONS(181), 1, + anon_sym_RBRACE, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1746), 1, anon_sym_STAR, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - ACTIONS(1710), 1, - anon_sym_RBRACE, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - STATE(1082), 1, + STATE(1060), 1, aux_sym_object_repeat1, - ACTIONS(737), 2, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(745), 2, + ACTIONS(824), 2, anon_sym_get, anon_sym_set, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 4, + ACTIONS(820), 5, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [29962] = 15, + [31853] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(643), 1, - anon_sym_RBRACE, - ACTIONS(1642), 1, + ACTIONS(822), 1, + anon_sym_async, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1746), 1, anon_sym_STAR, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - STATE(1082), 1, + ACTIONS(1770), 1, + anon_sym_RBRACE, + STATE(1060), 1, aux_sym_object_repeat1, - ACTIONS(737), 2, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(745), 2, + ACTIONS(824), 2, anon_sym_get, anon_sym_set, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 4, + ACTIONS(820), 4, anon_sym_export, - anon_sym_async, + anon_sym_await, sym_identifier, anon_sym_static, - [30016] = 18, + [31910] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(75), 1, @@ -50334,38 +55697,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(95), 1, anon_sym_STAR, - ACTIONS(1664), 1, + ACTIONS(1758), 1, anon_sym_LBRACK, - ACTIONS(1666), 1, + ACTIONS(1760), 1, anon_sym_async, - ACTIONS(1670), 1, + ACTIONS(1764), 1, anon_sym_static, - ACTIONS(1712), 1, + ACTIONS(1772), 1, anon_sym_RBRACE, - STATE(673), 1, + STATE(745), 1, aux_sym_class_body_repeat1, - STATE(707), 1, + STATE(780), 1, aux_sym_export_statement_repeat1, - STATE(755), 1, + STATE(821), 1, sym_method_definition, - STATE(766), 1, + STATE(836), 1, sym_decorator, - STATE(1114), 1, + STATE(1262), 1, sym_field_definition, - ACTIONS(1660), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1668), 2, + ACTIONS(1762), 2, sym_number, sym_private_property_identifier, - ACTIONS(1672), 2, + ACTIONS(1766), 2, anon_sym_get, anon_sym_set, - STATE(871), 3, + ACTIONS(1754), 3, + anon_sym_export, + anon_sym_await, + sym_identifier, + STATE(938), 3, sym_string, sym__property_name, sym_computed_property_name, - [30076] = 18, + [31971] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(75), 1, @@ -50376,117 +55740,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(95), 1, anon_sym_STAR, - ACTIONS(1664), 1, + ACTIONS(1758), 1, anon_sym_LBRACK, - ACTIONS(1666), 1, + ACTIONS(1760), 1, anon_sym_async, - ACTIONS(1670), 1, + ACTIONS(1764), 1, anon_sym_static, - ACTIONS(1714), 1, + ACTIONS(1774), 1, anon_sym_RBRACE, - STATE(673), 1, + STATE(743), 1, aux_sym_class_body_repeat1, - STATE(707), 1, + STATE(780), 1, aux_sym_export_statement_repeat1, - STATE(755), 1, + STATE(821), 1, sym_method_definition, - STATE(766), 1, + STATE(836), 1, sym_decorator, - STATE(1114), 1, + STATE(1262), 1, sym_field_definition, - ACTIONS(1660), 2, + ACTIONS(1762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1766), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1754), 3, anon_sym_export, + anon_sym_await, sym_identifier, - ACTIONS(1668), 2, + STATE(938), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [32032] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_STAR, + ACTIONS(1782), 1, + anon_sym_RBRACE, + ACTIONS(1784), 1, + anon_sym_LBRACK, + ACTIONS(1787), 1, + anon_sym_async, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1793), 1, + anon_sym_SQUOTE, + ACTIONS(1799), 1, + anon_sym_AT, + ACTIONS(1802), 1, + anon_sym_static, + STATE(745), 1, + aux_sym_class_body_repeat1, + STATE(780), 1, + aux_sym_export_statement_repeat1, + STATE(821), 1, + sym_method_definition, + STATE(836), 1, + sym_decorator, + STATE(1262), 1, + sym_field_definition, + ACTIONS(1796), 2, sym_number, sym_private_property_identifier, - ACTIONS(1672), 2, + ACTIONS(1805), 2, anon_sym_get, anon_sym_set, - STATE(871), 3, + ACTIONS(1776), 3, + anon_sym_export, + anon_sym_await, + sym_identifier, + STATE(938), 3, sym_string, sym__property_name, sym_computed_property_name, - [30136] = 16, + [32093] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(671), 1, - anon_sym_RBRACE, - ACTIONS(743), 1, - anon_sym_async, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1746), 1, anon_sym_STAR, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - STATE(1082), 1, + ACTIONS(1770), 1, + anon_sym_RBRACE, + STATE(1060), 1, aux_sym_object_repeat1, - ACTIONS(737), 2, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(745), 2, + ACTIONS(824), 2, anon_sym_get, anon_sym_set, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(741), 3, + STATE(1170), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(820), 5, anon_sym_export, + anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - STATE(1221), 3, + [32148] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(97), 1, + anon_sym_COMMA, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(344), 1, + anon_sym_SQUOTE, + ACTIONS(822), 1, + anon_sym_async, + ACTIONS(1736), 1, + anon_sym_LBRACK, + ACTIONS(1746), 1, + anon_sym_STAR, + ACTIONS(1752), 1, + anon_sym_EQ, + ACTIONS(1808), 1, + anon_sym_RBRACE, + STATE(1117), 1, + aux_sym_object_repeat1, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(808), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(824), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1750), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - [30192] = 15, + ACTIONS(820), 4, + anon_sym_export, + anon_sym_await, + sym_identifier, + anon_sym_static, + [32205] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1746), 1, anon_sym_STAR, - ACTIONS(1654), 1, + ACTIONS(1748), 1, anon_sym_RBRACE, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - STATE(1025), 1, + STATE(1060), 1, aux_sym_object_repeat1, - STATE(1026), 1, + STATE(1118), 1, aux_sym_object_pattern_repeat1, - ACTIONS(737), 2, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(745), 2, + ACTIONS(824), 2, anon_sym_get, anon_sym_set, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 4, + ACTIONS(820), 5, anon_sym_export, + anon_sym_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + [32260] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(97), 1, + anon_sym_COMMA, + ACTIONS(181), 1, + anon_sym_RBRACE, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(344), 1, + anon_sym_SQUOTE, + ACTIONS(822), 1, anon_sym_async, + ACTIONS(1736), 1, + anon_sym_LBRACK, + ACTIONS(1746), 1, + anon_sym_STAR, + ACTIONS(1752), 1, + anon_sym_EQ, + STATE(1060), 1, + aux_sym_object_repeat1, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(808), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(824), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1750), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1170), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(820), 4, + anon_sym_export, + anon_sym_await, sym_identifier, anon_sym_static, - [30246] = 18, + [32317] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(75), 1, @@ -50497,38 +55988,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(95), 1, anon_sym_STAR, - ACTIONS(1664), 1, + ACTIONS(1758), 1, anon_sym_LBRACK, - ACTIONS(1666), 1, + ACTIONS(1760), 1, anon_sym_async, - ACTIONS(1670), 1, + ACTIONS(1764), 1, anon_sym_static, - ACTIONS(1716), 1, + ACTIONS(1810), 1, anon_sym_RBRACE, - STATE(679), 1, + STATE(745), 1, aux_sym_class_body_repeat1, - STATE(707), 1, + STATE(780), 1, aux_sym_export_statement_repeat1, - STATE(755), 1, + STATE(821), 1, sym_method_definition, - STATE(766), 1, + STATE(836), 1, sym_decorator, - STATE(1114), 1, + STATE(1262), 1, sym_field_definition, - ACTIONS(1660), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1668), 2, + ACTIONS(1762), 2, sym_number, sym_private_property_identifier, - ACTIONS(1672), 2, + ACTIONS(1766), 2, anon_sym_get, anon_sym_set, - STATE(871), 3, + ACTIONS(1754), 3, + anon_sym_export, + anon_sym_await, + sym_identifier, + STATE(938), 3, sym_string, sym__property_name, sym_computed_property_name, - [30306] = 18, + [32378] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(75), 1, @@ -50539,1107 +56031,1058 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(95), 1, anon_sym_STAR, - ACTIONS(1664), 1, + ACTIONS(1758), 1, anon_sym_LBRACK, - ACTIONS(1666), 1, + ACTIONS(1760), 1, anon_sym_async, - ACTIONS(1670), 1, + ACTIONS(1764), 1, anon_sym_static, - ACTIONS(1718), 1, + ACTIONS(1812), 1, anon_sym_RBRACE, - STATE(672), 1, + STATE(745), 1, aux_sym_class_body_repeat1, - STATE(707), 1, + STATE(780), 1, aux_sym_export_statement_repeat1, - STATE(755), 1, + STATE(821), 1, sym_method_definition, - STATE(766), 1, + STATE(836), 1, sym_decorator, - STATE(1114), 1, + STATE(1262), 1, sym_field_definition, - ACTIONS(1660), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1668), 2, + ACTIONS(1762), 2, sym_number, sym_private_property_identifier, - ACTIONS(1672), 2, + ACTIONS(1766), 2, anon_sym_get, anon_sym_set, - STATE(871), 3, + ACTIONS(1754), 3, + anon_sym_export, + anon_sym_await, + sym_identifier, + STATE(938), 3, sym_string, sym__property_name, sym_computed_property_name, - [30366] = 15, + [32439] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(671), 1, - anon_sym_RBRACE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1746), 1, anon_sym_STAR, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - STATE(1082), 1, + ACTIONS(1808), 1, + anon_sym_RBRACE, + STATE(1117), 1, aux_sym_object_repeat1, - ACTIONS(737), 2, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(745), 2, + ACTIONS(824), 2, anon_sym_get, anon_sym_set, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 4, + ACTIONS(820), 5, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [30420] = 16, + [32494] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(370), 1, - anon_sym_DQUOTE, - ACTIONS(372), 1, - anon_sym_SQUOTE, - ACTIONS(675), 1, + ACTIONS(181), 1, anon_sym_RBRACE, - ACTIONS(743), 1, - anon_sym_async, - ACTIONS(1642), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, - anon_sym_STAR, - ACTIONS(1658), 1, - anon_sym_EQ, - STATE(1025), 1, - aux_sym_object_repeat1, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(737), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(745), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1656), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(741), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(1221), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [30476] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(97), 1, - anon_sym_COMMA, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(643), 1, - anon_sym_RBRACE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - STATE(1082), 1, + STATE(1060), 1, aux_sym_object_repeat1, - ACTIONS(737), 2, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [30525] = 13, + [32544] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1658), 1, - anon_sym_EQ, - ACTIONS(1674), 1, + ACTIONS(1748), 1, anon_sym_RBRACE, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - STATE(1082), 1, + ACTIONS(1752), 1, + anon_sym_EQ, + STATE(1060), 1, aux_sym_object_repeat1, - ACTIONS(737), 2, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [30574] = 13, + [32594] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(370), 1, + ACTIONS(157), 1, + anon_sym_RBRACE, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(671), 1, - anon_sym_RBRACE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - STATE(1082), 1, + STATE(1117), 1, aux_sym_object_repeat1, - ACTIONS(737), 2, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [30623] = 13, + [32644] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(675), 1, - anon_sym_RBRACE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - STATE(1025), 1, + ACTIONS(1808), 1, + anon_sym_RBRACE, + STATE(1117), 1, aux_sym_object_repeat1, - STATE(1026), 1, + STATE(1118), 1, aux_sym_object_pattern_repeat1, - ACTIONS(737), 2, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [30672] = 13, + [32694] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - ACTIONS(1710), 1, + ACTIONS(1770), 1, anon_sym_RBRACE, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - STATE(1082), 1, + STATE(1060), 1, aux_sym_object_repeat1, - ACTIONS(737), 2, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [30721] = 13, + [32744] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(370), 1, + ACTIONS(183), 1, + anon_sym_RBRACE, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1654), 1, - anon_sym_RBRACE, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - STATE(1025), 1, + STATE(1060), 1, aux_sym_object_repeat1, - STATE(1026), 1, + STATE(1118), 1, aux_sym_object_pattern_repeat1, - ACTIONS(737), 2, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [30770] = 12, + [32794] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1746), 1, anon_sym_STAR, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - ACTIONS(737), 2, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(745), 2, + ACTIONS(824), 2, anon_sym_get, anon_sym_set, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(1720), 2, + ACTIONS(1814), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 4, + ACTIONS(820), 5, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [30816] = 13, + [32841] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(743), 1, + ACTIONS(822), 1, anon_sym_async, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1746), 1, anon_sym_STAR, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - ACTIONS(737), 2, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(745), 2, + ACTIONS(824), 2, anon_sym_get, anon_sym_set, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(1720), 2, + ACTIONS(1814), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(741), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - [30864] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - anon_sym_DQUOTE, - ACTIONS(77), 1, - anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_STAR, - ACTIONS(1725), 1, - anon_sym_async, - ACTIONS(1729), 1, - anon_sym_get, - ACTIONS(1731), 1, - anon_sym_set, - ACTIONS(1727), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1660), 3, + ACTIONS(820), 4, anon_sym_export, + anon_sym_await, sym_identifier, anon_sym_static, - STATE(865), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1656), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [30909] = 12, + [32890] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(743), 1, - anon_sym_async, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, - anon_sym_STAR, - ACTIONS(737), 2, + ACTIONS(1752), 1, + anon_sym_EQ, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(745), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(1733), 2, + ACTIONS(1814), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(741), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - [30954] = 11, + ACTIONS(820), 7, + anon_sym_export, + anon_sym_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [32932] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1746), 1, anon_sym_STAR, - ACTIONS(737), 2, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(745), 2, + ACTIONS(824), 2, anon_sym_get, anon_sym_set, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(1733), 2, + ACTIONS(1817), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 4, + ACTIONS(820), 5, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [30997] = 10, + [32976] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(822), 1, + anon_sym_async, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1658), 1, - anon_sym_EQ, - ACTIONS(737), 2, + ACTIONS(1746), 1, + anon_sym_STAR, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - ACTIONS(1656), 2, + ACTIONS(824), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(1720), 2, + ACTIONS(1817), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1221), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 4, anon_sym_export, - anon_sym_async, + anon_sym_await, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [31038] = 11, + [33022] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1735), 1, + ACTIONS(1819), 1, anon_sym_STAR, - ACTIONS(1739), 1, + ACTIONS(1823), 1, anon_sym_get, - ACTIONS(1741), 1, + ACTIONS(1825), 1, anon_sym_set, - ACTIONS(1737), 2, + ACTIONS(1821), 2, sym_number, sym_private_property_identifier, - STATE(1150), 3, + STATE(1182), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 4, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - ACTIONS(1656), 4, + ACTIONS(1750), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - [31081] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - anon_sym_DQUOTE, - ACTIONS(77), 1, - anon_sym_SQUOTE, - ACTIONS(1652), 1, - anon_sym_STAR, - ACTIONS(1664), 1, - anon_sym_LBRACK, - ACTIONS(1743), 1, - anon_sym_async, - ACTIONS(1745), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1747), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1660), 3, + ACTIONS(820), 5, anon_sym_export, + anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - STATE(851), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1656), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [31124] = 10, + [33066] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1749), 1, + ACTIONS(1827), 1, anon_sym_STAR, - ACTIONS(1751), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1753), 2, + ACTIONS(1831), 1, anon_sym_get, + ACTIONS(1833), 1, anon_sym_set, - STATE(1277), 3, + ACTIONS(1829), 2, + sym_number, + sym_private_property_identifier, + STATE(1263), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 4, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - ACTIONS(1656), 4, + ACTIONS(1750), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - [31165] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - anon_sym_DQUOTE, - ACTIONS(372), 1, - anon_sym_SQUOTE, - ACTIONS(1642), 1, - anon_sym_LBRACK, - ACTIONS(1755), 1, - anon_sym_STAR, - ACTIONS(1759), 1, - anon_sym_get, - ACTIONS(1761), 1, - anon_sym_set, - ACTIONS(1757), 2, - sym_number, - sym_private_property_identifier, - STATE(1269), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(741), 4, + ACTIONS(820), 5, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - ACTIONS(1656), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [31208] = 10, + [33110] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(77), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1746), 1, anon_sym_STAR, - ACTIONS(737), 2, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_async, + ACTIONS(1837), 2, sym_number, sym_private_property_identifier, - ACTIONS(745), 2, + ACTIONS(1839), 2, anon_sym_get, anon_sym_set, - STATE(1221), 3, + STATE(919), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 4, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - ACTIONS(1656), 4, + ACTIONS(1750), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - [31249] = 17, + ACTIONS(1754), 4, + anon_sym_export, + anon_sym_await, + sym_identifier, + anon_sym_static, + [33154] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_AT, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(741), 1, - sym_identifier, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1763), 1, + ACTIONS(1841), 1, anon_sym_export, - ACTIONS(1765), 1, + ACTIONS(1843), 1, anon_sym_STAR, - ACTIONS(1767), 1, + ACTIONS(1845), 1, anon_sym_class, - ACTIONS(1769), 1, + ACTIONS(1847), 1, anon_sym_async, - ACTIONS(1773), 1, + ACTIONS(1851), 1, anon_sym_static, - ACTIONS(1775), 1, + ACTIONS(1853), 1, anon_sym_get, - ACTIONS(1777), 1, + ACTIONS(1855), 1, anon_sym_set, - STATE(737), 1, + STATE(793), 1, aux_sym_export_statement_repeat1, - STATE(766), 1, + STATE(836), 1, sym_decorator, - ACTIONS(1771), 2, + ACTIONS(820), 2, + anon_sym_await, + sym_identifier, + ACTIONS(1849), 2, sym_number, sym_private_property_identifier, - STATE(1254), 3, + STATE(1346), 3, sym_string, sym__property_name, sym_computed_property_name, - [31304] = 15, + [33210] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1765), 1, + ACTIONS(1746), 1, anon_sym_STAR, - ACTIONS(1769), 1, - anon_sym_async, - ACTIONS(1773), 1, - anon_sym_static, - ACTIONS(1775), 1, - anon_sym_get, - ACTIONS(1777), 1, - anon_sym_set, - STATE(737), 1, - aux_sym_export_statement_repeat1, - STATE(766), 1, - sym_decorator, - ACTIONS(741), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1771), 2, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - STATE(1254), 3, + ACTIONS(824), 2, + anon_sym_get, + anon_sym_set, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - [31354] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, - anon_sym_COMMA, - ACTIONS(594), 1, - anon_sym_RBRACK, - ACTIONS(598), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1549), 1, - anon_sym_LBRACE, - ACTIONS(1779), 1, - sym_identifier, - ACTIONS(1783), 1, - anon_sym_LBRACK, - STATE(960), 1, - sym_pattern, - STATE(1053), 1, - aux_sym_array_pattern_repeat1, - STATE(1075), 1, - sym_assignment_pattern, - STATE(922), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1781), 5, + ACTIONS(1750), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(820), 5, anon_sym_export, + anon_sym_await, anon_sym_async, + sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [31398] = 12, + [33252] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_COMMA, - ACTIONS(598), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1549), 1, - anon_sym_LBRACE, - ACTIONS(1779), 1, - sym_identifier, - ACTIONS(1783), 1, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(344), 1, + anon_sym_SQUOTE, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1785), 1, - anon_sym_RBRACK, - STATE(961), 1, - sym_pattern, - STATE(1057), 1, - sym_assignment_pattern, - STATE(1061), 1, - aux_sym_array_pattern_repeat1, - STATE(922), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1781), 5, + ACTIONS(1857), 1, + anon_sym_STAR, + ACTIONS(1859), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1861), 2, + anon_sym_get, + anon_sym_set, + STATE(1268), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1750), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(820), 5, anon_sym_export, + anon_sym_await, anon_sym_async, + sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [31442] = 15, + [33294] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(75), 1, anon_sym_DQUOTE, ACTIONS(77), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(1664), 1, + ACTIONS(1758), 1, anon_sym_LBRACK, - ACTIONS(1765), 1, + ACTIONS(1863), 1, anon_sym_STAR, - ACTIONS(1787), 1, + ACTIONS(1865), 1, anon_sym_async, - ACTIONS(1791), 1, - anon_sym_static, - ACTIONS(1793), 1, + ACTIONS(1869), 1, anon_sym_get, - ACTIONS(1795), 1, + ACTIONS(1871), 1, anon_sym_set, - STATE(737), 1, - aux_sym_export_statement_repeat1, - STATE(766), 1, - sym_decorator, - ACTIONS(1660), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1789), 2, + ACTIONS(1867), 2, sym_number, sym_private_property_identifier, - STATE(872), 3, + STATE(928), 3, sym_string, sym__property_name, sym_computed_property_name, - [31492] = 8, + ACTIONS(1750), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1754), 4, + anon_sym_export, + anon_sym_await, + sym_identifier, + anon_sym_static, + [33340] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1751), 2, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - STATE(1277), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1656), 4, + ACTIONS(1750), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [31528] = 8, + [33377] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1797), 2, + ACTIONS(1873), 2, sym_number, sym_private_property_identifier, - STATE(1266), 3, + STATE(1180), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1656), 4, + ACTIONS(1750), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [31564] = 8, + [33414] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1799), 2, + ACTIONS(1875), 2, sym_number, sym_private_property_identifier, - STATE(1263), 3, + STATE(1181), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1656), 4, + ACTIONS(1750), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [31600] = 8, + [33451] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(681), 1, + anon_sym_COMMA, + ACTIONS(687), 1, + anon_sym_RBRACK, + ACTIONS(691), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1643), 1, + anon_sym_LBRACE, + ACTIONS(1877), 1, + sym_identifier, + ACTIONS(1881), 1, + anon_sym_LBRACK, + STATE(1018), 1, + sym_pattern, + STATE(1099), 1, + sym_assignment_pattern, + STATE(1103), 1, + aux_sym_array_pattern_repeat1, + STATE(983), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1879), 6, + anon_sym_export, + anon_sym_await, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [33496] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1801), 2, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - STATE(1111), 3, + ACTIONS(1750), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(1817), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1656), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [31636] = 8, + [33535] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(737), 2, + ACTIONS(1859), 2, sym_number, sym_private_property_identifier, - STATE(1221), 3, + STATE(1268), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1656), 4, + ACTIONS(1750), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [31672] = 9, + [33572] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(87), 1, + anon_sym_AT, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(737), 2, + ACTIONS(1843), 1, + anon_sym_STAR, + ACTIONS(1847), 1, + anon_sym_async, + ACTIONS(1851), 1, + anon_sym_static, + ACTIONS(1853), 1, + anon_sym_get, + ACTIONS(1855), 1, + anon_sym_set, + STATE(793), 1, + aux_sym_export_statement_repeat1, + STATE(836), 1, + sym_decorator, + ACTIONS(1849), 2, sym_number, sym_private_property_identifier, - ACTIONS(1656), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(1733), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1221), 3, + ACTIONS(820), 3, + anon_sym_export, + anon_sym_await, + sym_identifier, + STATE(1346), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [33623] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(344), 1, + anon_sym_SQUOTE, + ACTIONS(1736), 1, + anon_sym_LBRACK, + ACTIONS(1883), 2, + sym_number, + sym_private_property_identifier, + STATE(1261), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(1750), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [31710] = 8, + [33660] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1803), 2, + ACTIONS(1885), 2, sym_number, sym_private_property_identifier, - STATE(1116), 3, + STATE(1260), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1656), 4, + ACTIONS(1750), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [31746] = 13, + [33697] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(75), 1, + anon_sym_DQUOTE, + ACTIONS(77), 1, + anon_sym_SQUOTE, ACTIONS(87), 1, anon_sym_AT, - ACTIONS(645), 1, - anon_sym_var, - ACTIONS(659), 1, - anon_sym_class, - ACTIONS(661), 1, + ACTIONS(1758), 1, + anon_sym_LBRACK, + ACTIONS(1843), 1, + anon_sym_STAR, + ACTIONS(1887), 1, anon_sym_async, - ACTIONS(663), 1, - anon_sym_function, - ACTIONS(1656), 1, - anon_sym_LPAREN, - ACTIONS(1805), 1, - anon_sym_default, - STATE(304), 1, - sym_declaration, - STATE(766), 1, - sym_decorator, - STATE(955), 1, + ACTIONS(1891), 1, + anon_sym_static, + ACTIONS(1893), 1, + anon_sym_get, + ACTIONS(1895), 1, + anon_sym_set, + STATE(793), 1, aux_sym_export_statement_repeat1, - ACTIONS(647), 2, - anon_sym_let, - anon_sym_const, - STATE(276), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [31791] = 6, + STATE(836), 1, + sym_decorator, + ACTIONS(1889), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1754), 3, + anon_sym_export, + anon_sym_await, + sym_identifier, + STATE(920), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [33748] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(1811), 1, - anon_sym_DOT, - STATE(773), 1, - sym_arguments, - ACTIONS(1807), 7, + ACTIONS(681), 1, + anon_sym_COMMA, + ACTIONS(691), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1643), 1, + anon_sym_LBRACE, + ACTIONS(1877), 1, + sym_identifier, + ACTIONS(1881), 1, + anon_sym_LBRACK, + ACTIONS(1897), 1, + anon_sym_RBRACK, + STATE(1039), 1, + sym_pattern, + STATE(1067), 1, + sym_assignment_pattern, + STATE(1071), 1, + aux_sym_array_pattern_repeat1, + STATE(983), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1879), 6, anon_sym_export, - anon_sym_class, + anon_sym_await, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1809), 7, + [33793] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(1903), 1, + anon_sym_DOT, + STATE(841), 1, + sym_arguments, + ACTIONS(1901), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -51647,75 +57090,86 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [31822] = 10, + ACTIONS(1899), 8, + anon_sym_export, + anon_sym_await, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [33825] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(598), 1, + ACTIONS(691), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1549), 1, + ACTIONS(1643), 1, anon_sym_LBRACE, - ACTIONS(1779), 1, + ACTIONS(1877), 1, sym_identifier, - ACTIONS(1783), 1, + ACTIONS(1881), 1, anon_sym_LBRACK, - STATE(1092), 1, + STATE(1132), 1, sym_pattern, - STATE(1128), 1, + STATE(1323), 1, sym_assignment_pattern, - ACTIONS(1813), 2, + ACTIONS(1905), 2, anon_sym_COMMA, anon_sym_RBRACK, - STATE(922), 4, + STATE(983), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1781), 5, + ACTIONS(1879), 6, anon_sym_export, + anon_sym_await, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - [31861] = 11, + [33865] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1656), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1735), 1, + ACTIONS(1857), 1, anon_sym_STAR, - ACTIONS(1739), 1, - anon_sym_get, - ACTIONS(1741), 1, - anon_sym_set, - ACTIONS(1737), 2, + ACTIONS(1859), 2, sym_number, sym_private_property_identifier, - STATE(1150), 3, + ACTIONS(1861), 2, + anon_sym_get, + anon_sym_set, + STATE(1268), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 4, + ACTIONS(820), 5, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [31901] = 3, + [33904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 6, + ACTIONS(1907), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1817), 10, + ACTIONS(1909), 10, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -51726,38 +57180,47 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [31925] = 3, + [33929] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 6, + ACTIONS(691), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(696), 1, + anon_sym_RPAREN, + ACTIONS(1643), 1, + anon_sym_LBRACE, + ACTIONS(1877), 1, + sym_identifier, + ACTIONS(1881), 1, + anon_sym_LBRACK, + STATE(1007), 1, + sym_pattern, + STATE(1098), 1, + sym_assignment_pattern, + STATE(983), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1879), 6, anon_sym_export, + anon_sym_await, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1821), 10, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - [31949] = 3, + [33968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 6, + ACTIONS(1911), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1821), 10, + ACTIONS(1913), 10, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -51768,17 +57231,18 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [31973] = 3, + [33993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 6, + ACTIONS(1915), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1821), 10, + ACTIONS(1917), 10, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -51789,66 +57253,40 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [31997] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - anon_sym_DQUOTE, - ACTIONS(372), 1, - anon_sym_SQUOTE, - ACTIONS(1642), 1, - anon_sym_LBRACK, - ACTIONS(1656), 1, - anon_sym_LPAREN, - ACTIONS(1749), 1, - anon_sym_STAR, - ACTIONS(1751), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1753), 2, - anon_sym_get, - anon_sym_set, - STATE(1277), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(741), 4, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - [32035] = 3, + [34018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1823), 8, + ACTIONS(1915), 7, anon_sym_export, - anon_sym_DOT, - anon_sym_class, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1825), 8, + ACTIONS(1917), 10, anon_sym_STAR, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [32059] = 3, + [34043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 6, + ACTIONS(1915), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1829), 10, + ACTIONS(1917), 10, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -51859,17 +57297,18 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [32083] = 3, + [34068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 6, + ACTIONS(1915), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1829), 10, + ACTIONS(1917), 10, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -51880,38 +57319,102 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [32107] = 3, + [34093] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 6, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(344), 1, + anon_sym_SQUOTE, + ACTIONS(1736), 1, + anon_sym_LBRACK, + ACTIONS(1750), 1, + anon_sym_LPAREN, + ACTIONS(1819), 1, + anon_sym_STAR, + ACTIONS(1823), 1, + anon_sym_get, + ACTIONS(1825), 1, + anon_sym_set, + ACTIONS(1821), 2, + sym_number, + sym_private_property_identifier, + STATE(1182), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(820), 5, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1829), 10, + [34134] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1923), 1, + anon_sym_AT, + STATE(793), 1, + aux_sym_export_statement_repeat1, + STATE(836), 1, + sym_decorator, + ACTIONS(1921), 6, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - [32131] = 3, + ACTIONS(1919), 8, + anon_sym_export, + anon_sym_await, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [34165] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(691), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1643), 1, + anon_sym_LBRACE, + ACTIONS(1877), 1, + sym_identifier, + ACTIONS(1881), 1, + anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_RPAREN, + STATE(1155), 1, + sym_pattern, + STATE(1245), 1, + sym_assignment_pattern, + STATE(983), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1879), 6, + anon_sym_export, + anon_sym_await, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [34204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 6, + ACTIONS(1915), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1829), 10, + ACTIONS(1917), 10, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -51922,17 +57425,18 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [32155] = 3, + [34229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 6, + ACTIONS(1915), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1829), 10, + ACTIONS(1917), 10, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -51943,17 +57447,18 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [32179] = 3, + [34254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 6, + ACTIONS(1915), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1833), 10, + ACTIONS(1917), 10, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -51964,47 +57469,18 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [32203] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - anon_sym_DQUOTE, - ACTIONS(372), 1, - anon_sym_SQUOTE, - ACTIONS(1642), 1, - anon_sym_LBRACK, - ACTIONS(1656), 1, - anon_sym_LPAREN, - ACTIONS(1723), 1, - anon_sym_STAR, - ACTIONS(1835), 1, - anon_sym_async, - ACTIONS(1839), 1, - anon_sym_get, - ACTIONS(1841), 1, - anon_sym_set, - ACTIONS(1837), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(741), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(1260), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [32245] = 3, + [34279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1827), 6, + ACTIONS(1928), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1829), 10, + ACTIONS(1930), 10, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -52015,17 +57491,18 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [32269] = 3, + [34304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 6, + ACTIONS(1928), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1845), 10, + ACTIONS(1930), 10, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -52036,17 +57513,18 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [32293] = 3, + [34329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 6, + ACTIONS(1928), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1849), 10, + ACTIONS(1930), 10, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -52057,158 +57535,68 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [32317] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(645), 1, - anon_sym_var, - ACTIONS(715), 1, - anon_sym_class, - ACTIONS(717), 1, - anon_sym_async, - ACTIONS(719), 1, - anon_sym_function, - ACTIONS(1851), 1, - anon_sym_default, - STATE(304), 1, - sym_declaration, - STATE(766), 1, - sym_decorator, - STATE(954), 1, - aux_sym_export_statement_repeat1, - ACTIONS(647), 2, - anon_sym_let, - anon_sym_const, - STATE(276), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [32359] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(645), 1, - anon_sym_var, - ACTIONS(659), 1, - anon_sym_class, - ACTIONS(661), 1, - anon_sym_async, - ACTIONS(663), 1, - anon_sym_function, - ACTIONS(1805), 1, - anon_sym_default, - STATE(304), 1, - sym_declaration, - STATE(766), 1, - sym_decorator, - STATE(955), 1, - aux_sym_export_statement_repeat1, - ACTIONS(647), 2, - anon_sym_let, - anon_sym_const, - STATE(276), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [32401] = 6, + [34354] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, - anon_sym_AT, - STATE(737), 1, - aux_sym_export_statement_repeat1, - STATE(766), 1, - sym_decorator, - ACTIONS(1855), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(342), 1, anon_sym_DQUOTE, + ACTIONS(344), 1, anon_sym_SQUOTE, + ACTIONS(1736), 1, + anon_sym_LBRACK, + ACTIONS(1750), 1, + anon_sym_LPAREN, + ACTIONS(1932), 1, + anon_sym_EQ_GT, + ACTIONS(1859), 2, sym_number, sym_private_property_identifier, - ACTIONS(1853), 7, + STATE(1268), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(820), 7, anon_sym_export, - anon_sym_class, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32431] = 10, + [34391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(598), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1549), 1, - anon_sym_LBRACE, - ACTIONS(1779), 1, - sym_identifier, - ACTIONS(1783), 1, + ACTIONS(1936), 8, + anon_sym_STAR, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1860), 1, - anon_sym_RPAREN, - STATE(1011), 1, - sym_pattern, - STATE(1187), 1, - sym_assignment_pattern, - STATE(922), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1781), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [32469] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, - anon_sym_LBRACK, - ACTIONS(1656), 1, - anon_sym_LPAREN, - ACTIONS(1755), 1, - anon_sym_STAR, - ACTIONS(1759), 1, - anon_sym_get, - ACTIONS(1761), 1, - anon_sym_set, - ACTIONS(1757), 2, sym_number, sym_private_property_identifier, - STATE(1269), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(741), 4, + anon_sym_AT, + ACTIONS(1934), 9, anon_sym_export, + anon_sym_await, + anon_sym_DOT, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, - [32509] = 3, + anon_sym_get, + anon_sym_set, + [34416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1862), 6, + ACTIONS(1928), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1864), 10, + ACTIONS(1930), 10, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -52219,45 +57607,18 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [32533] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(598), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(603), 1, - anon_sym_RPAREN, - ACTIONS(1549), 1, - anon_sym_LBRACE, - ACTIONS(1779), 1, - sym_identifier, - ACTIONS(1783), 1, - anon_sym_LBRACK, - STATE(936), 1, - sym_pattern, - STATE(1086), 1, - sym_assignment_pattern, - STATE(922), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1781), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [32571] = 3, + [34441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1866), 6, + ACTIONS(1938), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1868), 10, + ACTIONS(1940), 10, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -52268,45 +57629,18 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [32595] = 10, + [34466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(598), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1549), 1, - anon_sym_LBRACE, - ACTIONS(1779), 1, - sym_identifier, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(1870), 1, - anon_sym_RPAREN, - STATE(1011), 1, - sym_pattern, - STATE(1187), 1, - sym_assignment_pattern, - STATE(922), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1781), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [32633] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1827), 6, + ACTIONS(1938), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1829), 10, + ACTIONS(1940), 10, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -52317,17 +57651,18 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [32657] = 3, + [34491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1866), 6, + ACTIONS(1938), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1868), 10, + ACTIONS(1940), 10, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -52338,17 +57673,18 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [32681] = 3, + [34516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1866), 6, + ACTIONS(1942), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1868), 10, + ACTIONS(1944), 10, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -52359,17 +57695,18 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [32705] = 3, + [34541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1866), 6, + ACTIONS(1928), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1868), 10, + ACTIONS(1930), 10, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -52380,17 +57717,18 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [32729] = 3, + [34566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1866), 6, + ACTIONS(1946), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1868), 10, + ACTIONS(1948), 10, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -52401,171 +57739,321 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [32753] = 9, + [34591] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_AT, + ACTIONS(740), 1, + anon_sym_var, + ACTIONS(744), 1, + anon_sym_class, + ACTIONS(746), 1, + anon_sym_async, + ACTIONS(748), 1, + anon_sym_function, + ACTIONS(1750), 1, + anon_sym_LPAREN, + ACTIONS(1950), 1, + anon_sym_default, + STATE(349), 1, + sym_declaration, + STATE(836), 1, + sym_decorator, + STATE(1023), 1, + aux_sym_export_statement_repeat1, + ACTIONS(742), 2, + anon_sym_let, + anon_sym_const, + STATE(360), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [34636] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1656), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_EQ_GT, - ACTIONS(1751), 2, + ACTIONS(1827), 1, + anon_sym_STAR, + ACTIONS(1831), 1, + anon_sym_get, + ACTIONS(1833), 1, + anon_sym_set, + ACTIONS(1829), 2, + sym_number, + sym_private_property_identifier, + STATE(1263), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(820), 5, + anon_sym_export, + anon_sym_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + [34677] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(344), 1, + anon_sym_SQUOTE, + ACTIONS(1736), 1, + anon_sym_LBRACK, + ACTIONS(1750), 1, + anon_sym_LPAREN, + ACTIONS(1863), 1, + anon_sym_STAR, + ACTIONS(1952), 1, + anon_sym_async, + ACTIONS(1956), 1, + anon_sym_get, + ACTIONS(1958), 1, + anon_sym_set, + ACTIONS(1954), 2, sym_number, sym_private_property_identifier, - STATE(1277), 3, + STATE(1201), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 4, + anon_sym_export, + anon_sym_await, + sym_identifier, + anon_sym_static, + [34720] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(691), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1643), 1, + anon_sym_LBRACE, + ACTIONS(1877), 1, + sym_identifier, + ACTIONS(1881), 1, + anon_sym_LBRACK, + ACTIONS(1960), 1, + anon_sym_RPAREN, + STATE(1155), 1, + sym_pattern, + STATE(1245), 1, + sym_assignment_pattern, + STATE(983), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1879), 6, + anon_sym_export, + anon_sym_await, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [34759] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1962), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32789] = 8, + ACTIONS(1964), 10, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + [34784] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1656), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1874), 2, + ACTIONS(1883), 2, sym_number, sym_private_property_identifier, - STATE(1177), 3, + STATE(1261), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32822] = 8, + [34818] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1656), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1797), 2, + ACTIONS(1966), 2, sym_number, sym_private_property_identifier, - STATE(1266), 3, + STATE(1325), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32855] = 8, + [34852] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1656), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1803), 2, + ACTIONS(1968), 2, sym_number, sym_private_property_identifier, - STATE(1116), 3, + STATE(1349), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32888] = 8, + [34886] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1656), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1876), 2, + ACTIONS(1885), 2, sym_number, sym_private_property_identifier, - STATE(1273), 3, + STATE(1260), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32921] = 8, + [34920] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1656), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1801), 2, + ACTIONS(1970), 2, sym_number, sym_private_property_identifier, - STATE(1111), 3, + STATE(1185), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [32954] = 4, + [34954] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(691), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1643), 1, + anon_sym_LBRACE, + ACTIONS(1877), 1, + sym_identifier, + ACTIONS(1881), 1, + anon_sym_LBRACK, + STATE(1155), 1, + sym_pattern, + STATE(1245), 1, + sym_assignment_pattern, + STATE(983), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1879), 6, + anon_sym_export, + anon_sym_await, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [34990] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1882), 1, + ACTIONS(1976), 1, anon_sym_SEMI, - ACTIONS(1878), 6, + ACTIONS(1972), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1880), 8, + ACTIONS(1974), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -52574,316 +58062,321 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [32979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1884), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [33000] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1886), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [33021] = 9, + [35016] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(598), 1, + ACTIONS(691), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1549), 1, + ACTIONS(1643), 1, anon_sym_LBRACE, - ACTIONS(1779), 1, + ACTIONS(1877), 1, sym_identifier, - ACTIONS(1783), 1, + ACTIONS(1881), 1, anon_sym_LBRACK, - STATE(1011), 1, + STATE(1149), 1, sym_pattern, - STATE(1187), 1, + STATE(1266), 1, sym_assignment_pattern, - STATE(922), 4, + STATE(983), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1781), 5, + ACTIONS(1879), 6, anon_sym_export, + anon_sym_await, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - [33056] = 8, + [35052] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1656), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1888), 2, + ACTIONS(1978), 2, sym_number, sym_private_property_identifier, - STATE(1272), 3, + STATE(1186), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [33089] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1890), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [33110] = 8, + [35086] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1656), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1892), 2, + ACTIONS(1859), 2, sym_number, sym_private_property_identifier, - STATE(1178), 3, + STATE(1268), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [33143] = 8, + [35120] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1656), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1799), 2, + ACTIONS(1873), 2, sym_number, sym_private_property_identifier, - STATE(1263), 3, + STATE(1180), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [33176] = 8, + [35154] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_AT, + ACTIONS(740), 1, + anon_sym_var, + ACTIONS(814), 1, + anon_sym_class, + ACTIONS(816), 1, + anon_sym_async, + ACTIONS(818), 1, + anon_sym_function, + ACTIONS(1980), 1, + anon_sym_default, + STATE(349), 1, + sym_declaration, + STATE(836), 1, + sym_decorator, + STATE(1019), 1, + aux_sym_export_statement_repeat1, + ACTIONS(742), 2, + anon_sym_let, + anon_sym_const, + STATE(360), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [35196] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1656), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1751), 2, + ACTIONS(1875), 2, sym_number, sym_private_property_identifier, - STATE(1277), 3, + STATE(1181), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [33209] = 9, + [35230] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(598), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1549), 1, - anon_sym_LBRACE, - ACTIONS(1779), 1, - sym_identifier, - ACTIONS(1783), 1, - anon_sym_LBRACK, - STATE(1006), 1, - sym_pattern, - STATE(1200), 1, - sym_assignment_pattern, - STATE(922), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1781), 5, - anon_sym_export, + ACTIONS(87), 1, + anon_sym_AT, + ACTIONS(740), 1, + anon_sym_var, + ACTIONS(744), 1, + anon_sym_class, + ACTIONS(746), 1, anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [33244] = 8, + ACTIONS(748), 1, + anon_sym_function, + ACTIONS(1950), 1, + anon_sym_default, + STATE(349), 1, + sym_declaration, + STATE(836), 1, + sym_decorator, + STATE(1023), 1, + aux_sym_export_statement_repeat1, + ACTIONS(742), 2, + anon_sym_let, + anon_sym_const, + STATE(360), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [35272] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1656), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - ACTIONS(1894), 2, + ACTIONS(1982), 2, sym_number, sym_private_property_identifier, - STATE(1278), 3, + STATE(1189), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [33277] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1896), 7, + ACTIONS(820), 7, anon_sym_export, - anon_sym_class, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1898), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - [33299] = 7, + [35306] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1900), 2, + ACTIONS(1984), 2, sym_number, sym_private_property_identifier, - STATE(1275), 3, + STATE(1264), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [33329] = 7, + [35337] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1986), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [35358] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1902), 2, + ACTIONS(1988), 2, sym_number, sym_private_property_identifier, - STATE(1102), 3, + STATE(1340), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [33359] = 3, + [35389] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1990), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [35410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1904), 6, + ACTIONS(1992), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1906), 8, + ACTIONS(1994), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -52892,18 +58385,29 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [33381] = 3, + [35433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1807), 7, - anon_sym_export, - anon_sym_class, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1809), 7, + ACTIONS(1996), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [35454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2000), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -52911,64 +58415,110 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [33403] = 7, + ACTIONS(1998), 8, + anon_sym_export, + anon_sym_await, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [35477] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1894), 2, + ACTIONS(808), 2, sym_number, sym_private_property_identifier, - STATE(1278), 3, + STATE(1170), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [33433] = 7, + [35508] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2002), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [35529] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1908), 2, + ACTIONS(1982), 2, sym_number, sym_private_property_identifier, - STATE(1270), 3, + STATE(1189), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [33463] = 3, + [35560] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 7, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(344), 1, + anon_sym_SQUOTE, + ACTIONS(1736), 1, + anon_sym_LBRACK, + ACTIONS(1859), 2, + sym_number, + sym_private_property_identifier, + STATE(1268), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(820), 7, anon_sym_export, - anon_sym_class, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1912), 7, + [35591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2006), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -52976,1140 +58526,1199 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - [33485] = 7, + ACTIONS(2004), 8, + anon_sym_export, + anon_sym_await, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [35614] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1751), 2, + ACTIONS(2008), 2, sym_number, sym_private_property_identifier, - STATE(1277), 3, + STATE(1187), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [33515] = 7, + [35645] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(342), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(344), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, + ACTIONS(1736), 1, anon_sym_LBRACK, - ACTIONS(1914), 2, + ACTIONS(2010), 2, sym_number, sym_private_property_identifier, - STATE(1179), 3, + STATE(1183), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(741), 6, + ACTIONS(820), 7, anon_sym_export, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [33545] = 7, + [35676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(1901), 7, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(372), 1, anon_sym_SQUOTE, - ACTIONS(1642), 1, - anon_sym_LBRACK, - ACTIONS(737), 2, sym_number, sym_private_property_identifier, - STATE(1221), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(741), 6, + anon_sym_AT, + ACTIONS(1899), 8, anon_sym_export, + anon_sym_await, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [33575] = 11, + [35699] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, + ACTIONS(2016), 1, anon_sym_COLON, - ACTIONS(1922), 1, + ACTIONS(2018), 1, anon_sym_GT, - ACTIONS(1924), 1, + ACTIONS(2020), 1, anon_sym_SLASH, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1928), 1, + ACTIONS(2024), 1, anon_sym_DOT, - STATE(817), 1, + STATE(869), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [33610] = 11, + [35734] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, + ACTIONS(2016), 1, anon_sym_COLON, - ACTIONS(1922), 1, + ACTIONS(2018), 1, anon_sym_GT, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1928), 1, + ACTIONS(2024), 1, anon_sym_DOT, - ACTIONS(1930), 1, + ACTIONS(2026), 1, anon_sym_SLASH, - STATE(805), 1, + STATE(879), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [33645] = 11, + [35769] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, + ACTIONS(2016), 1, anon_sym_COLON, - ACTIONS(1922), 1, + ACTIONS(2018), 1, anon_sym_GT, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1928), 1, + ACTIONS(2024), 1, anon_sym_DOT, - ACTIONS(1932), 1, + ACTIONS(2028), 1, anon_sym_SLASH, - STATE(819), 1, + STATE(868), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [33680] = 11, + [35804] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, + ACTIONS(2016), 1, anon_sym_COLON, - ACTIONS(1922), 1, + ACTIONS(2018), 1, anon_sym_GT, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1928), 1, + ACTIONS(2024), 1, anon_sym_DOT, - ACTIONS(1934), 1, - anon_sym_SLASH, - STATE(828), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, - sym_jsx_namespace_name, - STATE(897), 2, - sym_jsx_expression, - sym_jsx_attribute, - [33715] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1916), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_GT, - ACTIONS(1924), 1, + ACTIONS(2030), 1, anon_sym_SLASH, - ACTIONS(1926), 1, - sym_jsx_identifier, - ACTIONS(1928), 1, - anon_sym_DOT, - STATE(810), 1, + STATE(883), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [33747] = 7, - ACTIONS(1936), 1, + [35839] = 7, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(1938), 1, + ACTIONS(2034), 1, anon_sym_LT, - ACTIONS(1940), 1, + ACTIONS(2036), 1, sym_jsx_text, - ACTIONS(1942), 1, - sym_comment, - STATE(461), 1, - sym_jsx_closing_element, - STATE(783), 1, - sym_jsx_opening_element, - STATE(785), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [33773] = 7, - ACTIONS(1936), 1, - anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(2038), 1, sym_comment, - ACTIONS(1944), 1, - anon_sym_LT, - ACTIONS(1946), 1, - sym_jsx_text, - STATE(783), 1, + STATE(849), 1, sym_jsx_opening_element, - STATE(1008), 1, + STATE(1073), 1, sym_jsx_closing_element, - STATE(798), 5, + STATE(863), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [33799] = 10, + [35865] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_COLON, - ACTIONS(1922), 1, + ACTIONS(2018), 1, anon_sym_GT, - ACTIONS(1924), 1, + ACTIONS(2020), 1, anon_sym_SLASH, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - STATE(801), 1, + ACTIONS(2024), 1, + anon_sym_DOT, + STATE(889), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [33831] = 7, - ACTIONS(1936), 1, + [35897] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2012), 1, + sym_identifier, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1938), 1, - anon_sym_LT, - ACTIONS(1942), 1, + ACTIONS(2018), 1, + anon_sym_GT, + ACTIONS(2022), 1, + sym_jsx_identifier, + ACTIONS(2024), 1, + anon_sym_DOT, + ACTIONS(2030), 1, + anon_sym_SLASH, + STATE(885), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(934), 1, + sym_jsx_namespace_name, + STATE(964), 2, + sym_jsx_expression, + sym_jsx_attribute, + [35929] = 7, + ACTIONS(2032), 1, + anon_sym_LBRACE, + ACTIONS(2038), 1, sym_comment, - ACTIONS(1948), 1, + ACTIONS(2040), 1, + anon_sym_LT, + ACTIONS(2042), 1, sym_jsx_text, - STATE(484), 1, + STATE(615), 1, sym_jsx_closing_element, - STATE(783), 1, + STATE(849), 1, sym_jsx_opening_element, - STATE(816), 5, + STATE(856), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [33857] = 10, + [35955] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, + ACTIONS(2016), 1, anon_sym_COLON, - ACTIONS(1922), 1, + ACTIONS(2018), 1, anon_sym_GT, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1932), 1, + ACTIONS(2030), 1, anon_sym_SLASH, - STATE(820), 1, + STATE(881), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [33889] = 10, + [35987] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, + ACTIONS(2016), 1, anon_sym_COLON, - ACTIONS(1922), 1, + ACTIONS(2018), 1, anon_sym_GT, - ACTIONS(1926), 1, - sym_jsx_identifier, - ACTIONS(1934), 1, + ACTIONS(2020), 1, anon_sym_SLASH, - STATE(821), 1, + ACTIONS(2022), 1, + sym_jsx_identifier, + STATE(891), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [33921] = 7, - ACTIONS(1936), 1, + [36019] = 7, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(2038), 1, sym_comment, - ACTIONS(1948), 1, - sym_jsx_text, - ACTIONS(1950), 1, + ACTIONS(2044), 1, anon_sym_LT, - STATE(579), 1, + ACTIONS(2046), 1, + sym_jsx_text, + STATE(533), 1, sym_jsx_closing_element, - STATE(783), 1, + STATE(849), 1, sym_jsx_opening_element, - STATE(816), 5, + STATE(876), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [33947] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1916), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_GT, - ACTIONS(1926), 1, - sym_jsx_identifier, - ACTIONS(1928), 1, - anon_sym_DOT, - ACTIONS(1932), 1, - anon_sym_SLASH, - STATE(799), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, - sym_jsx_namespace_name, - STATE(897), 2, - sym_jsx_expression, - sym_jsx_attribute, - [33979] = 7, - ACTIONS(1936), 1, + [36045] = 7, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(2038), 1, sym_comment, - ACTIONS(1948), 1, - sym_jsx_text, - ACTIONS(1952), 1, + ACTIONS(2040), 1, anon_sym_LT, - STATE(783), 1, - sym_jsx_opening_element, - STATE(924), 1, + ACTIONS(2046), 1, + sym_jsx_text, + STATE(613), 1, sym_jsx_closing_element, - STATE(816), 5, + STATE(849), 1, + sym_jsx_opening_element, + STATE(876), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [34005] = 10, + [36071] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, + ACTIONS(2016), 1, anon_sym_COLON, - ACTIONS(1922), 1, + ACTIONS(2018), 1, anon_sym_GT, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1930), 1, + ACTIONS(2028), 1, anon_sym_SLASH, - STATE(806), 1, + STATE(890), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34037] = 7, - ACTIONS(1936), 1, + [36103] = 7, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(2038), 1, sym_comment, - ACTIONS(1952), 1, - anon_sym_LT, - ACTIONS(1954), 1, + ACTIONS(2046), 1, sym_jsx_text, - STATE(783), 1, + ACTIONS(2048), 1, + anon_sym_LT, + STATE(849), 1, sym_jsx_opening_element, - STATE(928), 1, + STATE(956), 1, sym_jsx_closing_element, - STATE(790), 5, + STATE(876), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [34063] = 7, + [36129] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1956), 1, + ACTIONS(2050), 1, anon_sym_LT, - ACTIONS(1958), 1, + ACTIONS(2052), 1, anon_sym_DQUOTE, - ACTIONS(1960), 1, + ACTIONS(2054), 1, anon_sym_SQUOTE, - STATE(792), 1, + STATE(866), 1, sym_jsx_opening_element, - STATE(926), 5, + STATE(994), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, sym_string, - [34089] = 7, - ACTIONS(1936), 1, + [36155] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2012), 1, + sym_identifier, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(2016), 1, + anon_sym_COLON, + ACTIONS(2018), 1, + anon_sym_GT, + ACTIONS(2022), 1, + sym_jsx_identifier, + ACTIONS(2026), 1, + anon_sym_SLASH, + STATE(880), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(934), 1, + sym_jsx_namespace_name, + STATE(964), 2, + sym_jsx_expression, + sym_jsx_attribute, + [36187] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1950), 1, + ACTIONS(2014), 1, + anon_sym_LBRACE, + ACTIONS(2050), 1, anon_sym_LT, - ACTIONS(1962), 1, - sym_jsx_text, - STATE(555), 1, - sym_jsx_closing_element, - STATE(783), 1, + ACTIONS(2052), 1, + anon_sym_DQUOTE, + ACTIONS(2054), 1, + anon_sym_SQUOTE, + STATE(866), 1, sym_jsx_opening_element, - STATE(788), 5, + STATE(991), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [34115] = 10, + sym_string, + [36213] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(2018), 1, anon_sym_GT, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1928), 1, + ACTIONS(2024), 1, anon_sym_DOT, - ACTIONS(1934), 1, + ACTIONS(2028), 1, anon_sym_SLASH, - STATE(827), 1, + STATE(892), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34147] = 7, - ACTIONS(3), 1, + [36245] = 7, + ACTIONS(2032), 1, + anon_sym_LBRACE, + ACTIONS(2034), 1, + anon_sym_LT, + ACTIONS(2038), 1, sym_comment, - ACTIONS(1918), 1, + ACTIONS(2046), 1, + sym_jsx_text, + STATE(849), 1, + sym_jsx_opening_element, + STATE(1090), 1, + sym_jsx_closing_element, + STATE(876), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [36271] = 7, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(1956), 1, + ACTIONS(2038), 1, + sym_comment, + ACTIONS(2044), 1, anon_sym_LT, - ACTIONS(1958), 1, - anon_sym_DQUOTE, - ACTIONS(1960), 1, - anon_sym_SQUOTE, - STATE(792), 1, + ACTIONS(2056), 1, + sym_jsx_text, + STATE(518), 1, + sym_jsx_closing_element, + STATE(849), 1, sym_jsx_opening_element, - STATE(895), 5, + STATE(855), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, - sym_string, - [34173] = 10, + aux_sym_jsx_element_repeat1, + [36297] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(2018), 1, anon_sym_GT, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1928), 1, + ACTIONS(2024), 1, anon_sym_DOT, - ACTIONS(1930), 1, + ACTIONS(2026), 1, anon_sym_SLASH, - STATE(804), 1, + STATE(878), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34205] = 7, - ACTIONS(1936), 1, + [36329] = 7, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(2038), 1, sym_comment, - ACTIONS(1944), 1, + ACTIONS(2048), 1, anon_sym_LT, - ACTIONS(1948), 1, + ACTIONS(2058), 1, sym_jsx_text, - STATE(783), 1, + STATE(849), 1, sym_jsx_opening_element, - STATE(1005), 1, + STATE(957), 1, sym_jsx_closing_element, - STATE(816), 5, + STATE(858), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [34231] = 9, + [36355] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(2018), 1, + anon_sym_GT, + ACTIONS(2022), 1, + sym_jsx_identifier, + ACTIONS(2028), 1, + anon_sym_SLASH, + STATE(893), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(934), 1, + sym_jsx_namespace_name, + STATE(964), 2, + sym_jsx_expression, + sym_jsx_attribute, + [36384] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2012), 1, + sym_identifier, + ACTIONS(2014), 1, + anon_sym_LBRACE, + ACTIONS(2022), 1, + sym_jsx_identifier, + ACTIONS(2060), 1, + anon_sym_GT, + ACTIONS(2062), 1, + anon_sym_SLASH, + STATE(894), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(934), 1, + sym_jsx_namespace_name, + STATE(964), 2, + sym_jsx_expression, + sym_jsx_attribute, + [36413] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2012), 1, + sym_identifier, + ACTIONS(2014), 1, + anon_sym_LBRACE, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1964), 1, + ACTIONS(2060), 1, + anon_sym_GT, + ACTIONS(2064), 1, + anon_sym_SLASH, + STATE(894), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(934), 1, + sym_jsx_namespace_name, + STATE(964), 2, + sym_jsx_expression, + sym_jsx_attribute, + [36442] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2012), 1, + sym_identifier, + ACTIONS(2014), 1, + anon_sym_LBRACE, + ACTIONS(2018), 1, anon_sym_GT, - ACTIONS(1966), 1, + ACTIONS(2022), 1, + sym_jsx_identifier, + ACTIONS(2030), 1, anon_sym_SLASH, - STATE(811), 1, + STATE(886), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34260] = 6, - ACTIONS(1936), 1, + [36471] = 6, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(2038), 1, sym_comment, - ACTIONS(1948), 1, + ACTIONS(2046), 1, sym_jsx_text, - ACTIONS(1968), 1, + ACTIONS(2066), 1, anon_sym_LT, - STATE(783), 1, + STATE(849), 1, sym_jsx_opening_element, - STATE(816), 5, + STATE(876), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [34283] = 9, + [36494] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(2018), 1, + anon_sym_GT, + ACTIONS(2020), 1, + anon_sym_SLASH, + ACTIONS(2022), 1, + sym_jsx_identifier, + STATE(888), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(934), 1, + sym_jsx_namespace_name, + STATE(964), 2, + sym_jsx_expression, + sym_jsx_attribute, + [36523] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2012), 1, + sym_identifier, + ACTIONS(2014), 1, + anon_sym_LBRACE, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1970), 1, + ACTIONS(2068), 1, anon_sym_GT, - ACTIONS(1972), 1, + ACTIONS(2070), 1, anon_sym_SLASH, - STATE(811), 1, + STATE(894), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34312] = 6, - ACTIONS(1936), 1, + [36552] = 6, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(2038), 1, sym_comment, - ACTIONS(1974), 1, + ACTIONS(2072), 1, anon_sym_LT, - ACTIONS(1976), 1, + ACTIONS(2074), 1, + sym_jsx_text, + STATE(849), 1, + sym_jsx_opening_element, + STATE(896), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [36575] = 6, + ACTIONS(2032), 1, + anon_sym_LBRACE, + ACTIONS(2038), 1, + sym_comment, + ACTIONS(2076), 1, + anon_sym_LT, + ACTIONS(2078), 1, + sym_jsx_text, + STATE(849), 1, + sym_jsx_opening_element, + STATE(871), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [36598] = 6, + ACTIONS(2038), 1, + sym_comment, + ACTIONS(2080), 1, + anon_sym_LBRACE, + ACTIONS(2083), 1, + anon_sym_LT, + ACTIONS(2086), 1, + sym_jsx_text, + STATE(849), 1, + sym_jsx_opening_element, + STATE(876), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [36621] = 6, + ACTIONS(2032), 1, + anon_sym_LBRACE, + ACTIONS(2038), 1, + sym_comment, + ACTIONS(2046), 1, sym_jsx_text, - STATE(783), 1, + ACTIONS(2089), 1, + anon_sym_LT, + STATE(849), 1, sym_jsx_opening_element, - STATE(825), 5, + STATE(876), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [34335] = 9, + [36644] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1978), 1, + ACTIONS(2091), 1, anon_sym_GT, - ACTIONS(1980), 1, + ACTIONS(2093), 1, anon_sym_SLASH, - STATE(811), 1, + STATE(894), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34364] = 9, + [36673] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1964), 1, + ACTIONS(2060), 1, anon_sym_GT, - ACTIONS(1982), 1, + ACTIONS(2095), 1, anon_sym_SLASH, - STATE(811), 1, + STATE(894), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34393] = 9, + [36702] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1984), 1, + ACTIONS(2097), 1, anon_sym_GT, - ACTIONS(1986), 1, + ACTIONS(2099), 1, anon_sym_SLASH, - STATE(811), 1, + STATE(894), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34422] = 9, + [36731] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1970), 1, + ACTIONS(2097), 1, anon_sym_GT, - ACTIONS(1988), 1, + ACTIONS(2101), 1, anon_sym_SLASH, - STATE(811), 1, + STATE(894), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34451] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1916), 1, - sym_identifier, - ACTIONS(1918), 1, + [36760] = 6, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_GT, - ACTIONS(1924), 1, - anon_sym_SLASH, - ACTIONS(1926), 1, - sym_jsx_identifier, - STATE(809), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, - sym_jsx_namespace_name, - STATE(897), 2, + ACTIONS(2038), 1, + sym_comment, + ACTIONS(2103), 1, + anon_sym_LT, + ACTIONS(2105), 1, + sym_jsx_text, + STATE(849), 1, + sym_jsx_opening_element, + STATE(877), 5, + sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, - sym_jsx_attribute, - [34480] = 9, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [36783] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_GT, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1930), 1, + ACTIONS(2060), 1, + anon_sym_GT, + ACTIONS(2107), 1, anon_sym_SLASH, - STATE(803), 1, + STATE(894), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34509] = 9, + [36812] = 6, + ACTIONS(2032), 1, + anon_sym_LBRACE, + ACTIONS(2038), 1, + sym_comment, + ACTIONS(2046), 1, + sym_jsx_text, + ACTIONS(2109), 1, + anon_sym_LT, + STATE(849), 1, + sym_jsx_opening_element, + STATE(876), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [36835] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1978), 1, + ACTIONS(2091), 1, anon_sym_GT, - ACTIONS(1990), 1, + ACTIONS(2111), 1, anon_sym_SLASH, - STATE(811), 1, + STATE(894), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34538] = 9, + [36864] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1964), 1, + ACTIONS(2068), 1, anon_sym_GT, - ACTIONS(1992), 1, + ACTIONS(2113), 1, anon_sym_SLASH, - STATE(811), 1, + STATE(894), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34567] = 9, + [36893] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1994), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1997), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(2000), 1, + ACTIONS(2018), 1, anon_sym_GT, - ACTIONS(2002), 1, - anon_sym_SLASH, - ACTIONS(2004), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - STATE(811), 1, + ACTIONS(2026), 1, + anon_sym_SLASH, + STATE(873), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34596] = 9, + [36922] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_GT, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1934), 1, + ACTIONS(2068), 1, + anon_sym_GT, + ACTIONS(2115), 1, anon_sym_SLASH, - STATE(826), 1, + STATE(894), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34625] = 6, - ACTIONS(1936), 1, - anon_sym_LBRACE, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(1948), 1, - sym_jsx_text, - ACTIONS(2007), 1, - anon_sym_LT, - STATE(783), 1, - sym_jsx_opening_element, - STATE(816), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [34648] = 9, + [36951] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1978), 1, + ACTIONS(2091), 1, anon_sym_GT, - ACTIONS(2009), 1, + ACTIONS(2117), 1, anon_sym_SLASH, - STATE(811), 1, + STATE(894), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34677] = 6, - ACTIONS(1936), 1, - anon_sym_LBRACE, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(1948), 1, - sym_jsx_text, - ACTIONS(2011), 1, - anon_sym_LT, - STATE(783), 1, - sym_jsx_opening_element, - STATE(816), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [34700] = 6, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(2013), 1, - anon_sym_LBRACE, - ACTIONS(2016), 1, - anon_sym_LT, - ACTIONS(2019), 1, - sym_jsx_text, - STATE(783), 1, - sym_jsx_opening_element, - STATE(816), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [34723] = 9, + [36980] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1984), 1, + ACTIONS(2097), 1, anon_sym_GT, - ACTIONS(2022), 1, + ACTIONS(2119), 1, anon_sym_SLASH, - STATE(811), 1, + STATE(894), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34752] = 6, - ACTIONS(1936), 1, - anon_sym_LBRACE, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(2024), 1, - anon_sym_LT, - ACTIONS(2026), 1, - sym_jsx_text, - STATE(783), 1, - sym_jsx_opening_element, - STATE(813), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [34775] = 9, + [37009] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1984), 1, + ACTIONS(2097), 1, anon_sym_GT, - ACTIONS(2028), 1, + ACTIONS(2121), 1, anon_sym_SLASH, - STATE(811), 1, + STATE(894), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34804] = 9, + [37038] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1970), 1, + ACTIONS(2091), 1, anon_sym_GT, - ACTIONS(2030), 1, + ACTIONS(2123), 1, anon_sym_SLASH, - STATE(811), 1, + STATE(894), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34833] = 9, + [37067] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2012), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2014), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, + ACTIONS(2022), 1, sym_jsx_identifier, - ACTIONS(1970), 1, + ACTIONS(2068), 1, anon_sym_GT, - ACTIONS(2032), 1, + ACTIONS(2125), 1, anon_sym_SLASH, - STATE(811), 1, + STATE(894), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34862] = 9, + [37096] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2127), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2130), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(2133), 1, anon_sym_GT, - ACTIONS(1926), 1, - sym_jsx_identifier, - ACTIONS(1932), 1, + ACTIONS(2135), 1, anon_sym_SLASH, - STATE(814), 1, + ACTIONS(2137), 1, + sym_jsx_identifier, + STATE(894), 1, aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, + STATE(934), 1, sym_jsx_namespace_name, - STATE(897), 2, + STATE(964), 2, sym_jsx_expression, sym_jsx_attribute, - [34891] = 6, - ACTIONS(1936), 1, + [37125] = 6, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2034), 1, + ACTIONS(2140), 1, anon_sym_LT, - ACTIONS(2036), 1, + ACTIONS(2142), 1, sym_jsx_text, - STATE(783), 1, + STATE(849), 1, sym_jsx_opening_element, - STATE(815), 5, + STATE(884), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [34914] = 6, - ACTIONS(1936), 1, + [37148] = 6, + ACTIONS(2032), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, - sym_comment, ACTIONS(2038), 1, - anon_sym_LT, - ACTIONS(2040), 1, - sym_jsx_text, - STATE(783), 1, - sym_jsx_opening_element, - STATE(800), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [34937] = 6, - ACTIONS(1936), 1, - anon_sym_LBRACE, - ACTIONS(1942), 1, sym_comment, - ACTIONS(1948), 1, + ACTIONS(2046), 1, sym_jsx_text, - ACTIONS(2042), 1, + ACTIONS(2144), 1, anon_sym_LT, - STATE(783), 1, + STATE(849), 1, sym_jsx_opening_element, - STATE(816), 5, + STATE(876), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [34960] = 9, + [37171] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1926), 1, - sym_jsx_identifier, - ACTIONS(1978), 1, - anon_sym_GT, - ACTIONS(2044), 1, - anon_sym_SLASH, - STATE(811), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, - sym_jsx_namespace_name, - STATE(897), 2, - sym_jsx_expression, - sym_jsx_attribute, - [34989] = 9, + ACTIONS(97), 1, + anon_sym_COMMA, + ACTIONS(1752), 1, + anon_sym_EQ, + ACTIONS(1808), 1, + anon_sym_RBRACE, + STATE(1117), 1, + aux_sym_object_repeat1, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1750), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [37194] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1926), 1, - sym_jsx_identifier, - ACTIONS(1964), 1, - anon_sym_GT, - ACTIONS(2046), 1, - anon_sym_SLASH, - STATE(811), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, - sym_jsx_namespace_name, - STATE(897), 2, - sym_jsx_expression, - sym_jsx_attribute, - [35018] = 9, + ACTIONS(97), 1, + anon_sym_COMMA, + ACTIONS(1752), 1, + anon_sym_EQ, + ACTIONS(1770), 1, + anon_sym_RBRACE, + STATE(1060), 1, + aux_sym_object_repeat1, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1750), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [37217] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2016), 1, + anon_sym_COLON, + ACTIONS(2150), 1, + anon_sym_EQ, + ACTIONS(2146), 2, + anon_sym_SLASH, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2148), 3, anon_sym_LBRACE, - ACTIONS(1926), 1, - sym_jsx_identifier, - ACTIONS(1984), 1, anon_sym_GT, - ACTIONS(2048), 1, - anon_sym_SLASH, - STATE(811), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(877), 1, - sym_jsx_namespace_name, - STATE(897), 2, - sym_jsx_expression, - sym_jsx_attribute, - [35047] = 2, + sym_jsx_identifier, + [37236] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1423), 7, + ACTIONS(97), 1, anon_sym_COMMA, + ACTIONS(181), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(1752), 1, anon_sym_EQ, - anon_sym_RBRACK, - [35060] = 6, + STATE(1060), 1, + aux_sym_object_repeat1, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1750), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [37259] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 1, + ACTIONS(2152), 1, sym_identifier, - ACTIONS(2052), 1, + ACTIONS(2154), 1, anon_sym_LBRACE, - ACTIONS(2054), 1, + ACTIONS(2156), 1, anon_sym_LBRACK, - STATE(986), 1, + STATE(1028), 1, sym_variable_declarator, - STATE(925), 3, + STATE(905), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [35081] = 2, + [37280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2056), 7, + ACTIONS(2158), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -54117,86 +59726,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [35094] = 6, + [37293] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 1, - sym_identifier, - ACTIONS(2052), 1, + ACTIONS(2154), 1, anon_sym_LBRACE, - ACTIONS(2054), 1, + ACTIONS(2156), 1, anon_sym_LBRACK, - STATE(997), 1, + ACTIONS(2160), 1, + sym_identifier, + STATE(1028), 1, sym_variable_declarator, - STATE(925), 3, + STATE(996), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [35115] = 5, + [37314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1920), 1, - anon_sym_COLON, - ACTIONS(2062), 1, - anon_sym_EQ, - ACTIONS(2058), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(2060), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [35134] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(97), 1, + ACTIONS(2162), 7, anon_sym_COMMA, - ACTIONS(1658), 1, - anon_sym_EQ, - ACTIONS(1710), 1, anon_sym_RBRACE, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - STATE(1082), 1, - aux_sym_object_repeat1, - ACTIONS(1656), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [35157] = 7, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [37327] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(97), 1, - anon_sym_COMMA, - ACTIONS(675), 1, - anon_sym_RBRACE, - ACTIONS(1658), 1, + ACTIONS(2168), 1, anon_sym_EQ, - STATE(1025), 1, - aux_sym_object_repeat1, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1656), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [35180] = 6, + STATE(1125), 1, + sym__initializer, + ACTIONS(2166), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(2164), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [37346] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2052), 1, + ACTIONS(2152), 1, + sym_identifier, + ACTIONS(2154), 1, anon_sym_LBRACE, - ACTIONS(2054), 1, + ACTIONS(2156), 1, anon_sym_LBRACK, - ACTIONS(2064), 1, - sym_identifier, - STATE(986), 1, + STATE(1057), 1, sym_variable_declarator, - STATE(848), 3, + STATE(905), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [35201] = 2, + [37367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2066), 7, + ACTIONS(1511), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -54204,10 +59792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [35214] = 2, + [37380] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 7, + ACTIONS(1501), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -54215,53 +59803,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [35227] = 7, + [37393] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(1658), 1, - anon_sym_EQ, - ACTIONS(1674), 1, + ACTIONS(157), 1, anon_sym_RBRACE, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - STATE(1082), 1, + ACTIONS(1752), 1, + anon_sym_EQ, + STATE(1117), 1, aux_sym_object_repeat1, - ACTIONS(1656), 2, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - [35250] = 7, + [37416] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(1654), 1, + ACTIONS(1748), 1, anon_sym_RBRACE, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - STATE(1025), 1, + STATE(1060), 1, aux_sym_object_repeat1, - STATE(1026), 1, + STATE(1118), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1656), 2, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - [35273] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - anon_sym_RBRACK, - [35286] = 2, + [37439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2068), 7, + ACTIONS(1506), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -54269,56 +59846,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [35299] = 6, + [37452] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2052), 1, + ACTIONS(2154), 1, anon_sym_LBRACE, - ACTIONS(2054), 1, + ACTIONS(2156), 1, anon_sym_LBRACK, - ACTIONS(2064), 1, + ACTIONS(2160), 1, sym_identifier, - STATE(968), 1, + STATE(1057), 1, sym_variable_declarator, - STATE(848), 3, + STATE(996), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [35320] = 6, + [37473] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 1, - sym_identifier, - ACTIONS(2052), 1, + ACTIONS(2154), 1, anon_sym_LBRACE, - ACTIONS(2054), 1, + ACTIONS(2156), 1, anon_sym_LBRACK, - STATE(968), 1, + ACTIONS(2160), 1, + sym_identifier, + STATE(1152), 1, sym_variable_declarator, - STATE(925), 3, + STATE(996), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [35341] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(97), 1, - anon_sym_COMMA, - ACTIONS(671), 1, - anon_sym_RBRACE, - ACTIONS(1658), 1, - anon_sym_EQ, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - STATE(1082), 1, - aux_sym_object_repeat1, - ACTIONS(1656), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [35364] = 2, + [37494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2070), 7, + ACTIONS(2170), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -54326,40 +59887,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [35377] = 7, + [37507] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(643), 1, + ACTIONS(183), 1, anon_sym_RBRACE, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - STATE(1082), 1, + STATE(1060), 1, aux_sym_object_repeat1, - ACTIONS(1656), 2, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1750), 2, anon_sym_LPAREN, anon_sym_COLON, - [35400] = 5, + [37530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_EQ, - STATE(1064), 1, - sym__initializer, - ACTIONS(2074), 2, + ACTIONS(2172), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_in, anon_sym_of, - ACTIONS(2072), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [35419] = 2, + anon_sym_EQ, + anon_sym_RBRACK, + [37543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 7, + ACTIONS(2174), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -54367,5467 +59925,5525 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [35432] = 5, + [37556] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2082), 1, - anon_sym_BQUOTE, - ACTIONS(2084), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2080), 2, - sym__template_chars, - sym_escape_sequence, - STATE(859), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [35450] = 6, + ACTIONS(1643), 1, + anon_sym_LBRACE, + ACTIONS(1881), 1, + anon_sym_LBRACK, + ACTIONS(2176), 1, + sym_identifier, + STATE(966), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [37574] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(2168), 1, anon_sym_EQ, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1190), 1, + STATE(1229), 1, sym__initializer, - STATE(1246), 1, + STATE(1269), 1, sym_formal_parameters, - ACTIONS(2088), 2, + ACTIONS(2180), 2, sym__automatic_semicolon, anon_sym_SEMI, - [35470] = 5, + [37594] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 1, - anon_sym_LBRACE, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(2090), 1, - sym_identifier, - STATE(1329), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [35488] = 2, + ACTIONS(2168), 1, + anon_sym_EQ, + ACTIONS(2178), 1, + anon_sym_LPAREN, + STATE(1233), 1, + sym__initializer, + STATE(1259), 1, + sym_formal_parameters, + ACTIONS(2182), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [37614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 6, + ACTIONS(1511), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, - [35500] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2092), 1, - sym_identifier, - ACTIONS(2094), 1, - anon_sym_GT, - ACTIONS(2096), 1, - anon_sym_SLASH, - ACTIONS(2098), 1, - sym_jsx_identifier, - STATE(789), 1, - sym_nested_identifier, - STATE(822), 1, - sym_jsx_namespace_name, - [35522] = 7, + [37626] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2184), 1, sym_identifier, - ACTIONS(2094), 1, + ACTIONS(2186), 1, anon_sym_GT, - ACTIONS(2098), 1, - sym_jsx_identifier, - ACTIONS(2100), 1, + ACTIONS(2188), 1, anon_sym_SLASH, - STATE(789), 1, - sym_nested_identifier, - STATE(822), 1, - sym_jsx_namespace_name, - [35544] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2092), 1, - sym_identifier, - ACTIONS(2094), 1, - anon_sym_GT, - ACTIONS(2098), 1, + ACTIONS(2190), 1, sym_jsx_identifier, - ACTIONS(2102), 1, - anon_sym_SLASH, - STATE(789), 1, + STATE(851), 1, sym_nested_identifier, - STATE(822), 1, + STATE(870), 1, sym_jsx_namespace_name, - [35566] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2070), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [35578] = 3, + [37648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 2, + ACTIONS(2192), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(2106), 4, + ACTIONS(2194), 4, anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT, sym_jsx_identifier, - [35592] = 5, + [37662] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2084), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2110), 1, + ACTIONS(2198), 1, anon_sym_BQUOTE, - ACTIONS(2108), 2, + ACTIONS(2200), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2196), 2, sym__template_chars, sym_escape_sequence, - STATE(874), 2, + STATE(944), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [35610] = 3, + [37680] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2112), 2, - anon_sym_SLASH, + ACTIONS(2202), 1, + anon_sym_default, + ACTIONS(2205), 1, + anon_sym_RBRACE, + ACTIONS(2207), 1, + anon_sym_case, + STATE(925), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [37698] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2184), 1, sym_identifier, - ACTIONS(2114), 4, - anon_sym_LBRACE, + ACTIONS(2186), 1, anon_sym_GT, + ACTIONS(2190), 1, sym_jsx_identifier, - anon_sym_DOT, - [35624] = 2, + ACTIONS(2210), 1, + anon_sym_SLASH, + STATE(851), 1, + sym_nested_identifier, + STATE(870), 1, + sym_jsx_namespace_name, + [37720] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1643), 1, + anon_sym_LBRACE, + ACTIONS(1881), 1, + anon_sym_LBRACK, + ACTIONS(2212), 1, + sym_identifier, + STATE(1424), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [37738] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2168), 1, + anon_sym_EQ, + ACTIONS(2178), 1, + anon_sym_LPAREN, + STATE(1179), 1, + sym_formal_parameters, + STATE(1256), 1, + sym__initializer, + ACTIONS(2214), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [37758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 6, + ACTIONS(2162), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, - [35636] = 2, + [37770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2056), 6, + ACTIONS(2158), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, - [35648] = 7, + [37782] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2184), 1, sym_identifier, - ACTIONS(2094), 1, + ACTIONS(2186), 1, anon_sym_GT, - ACTIONS(2098), 1, + ACTIONS(2190), 1, sym_jsx_identifier, - ACTIONS(2116), 1, + ACTIONS(2216), 1, anon_sym_SLASH, - STATE(789), 1, + STATE(851), 1, sym_nested_identifier, - STATE(822), 1, + STATE(870), 1, sym_jsx_namespace_name, - [35670] = 7, + [37804] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2184), 1, sym_identifier, - ACTIONS(2094), 1, + ACTIONS(2186), 1, anon_sym_GT, - ACTIONS(2098), 1, + ACTIONS(2190), 1, sym_jsx_identifier, - ACTIONS(2118), 1, + ACTIONS(2218), 1, anon_sym_SLASH, - STATE(789), 1, + STATE(851), 1, sym_nested_identifier, - STATE(822), 1, + STATE(870), 1, sym_jsx_namespace_name, - [35692] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - anon_sym_EQ, - ACTIONS(2086), 1, - anon_sym_LPAREN, - STATE(1160), 1, - sym__initializer, - STATE(1262), 1, - sym_formal_parameters, - ACTIONS(2120), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [35712] = 5, + [37826] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2084), 1, + ACTIONS(2200), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2124), 1, + ACTIONS(2220), 1, anon_sym_BQUOTE, - ACTIONS(2122), 2, + ACTIONS(2196), 2, sym__template_chars, sym_escape_sequence, - STATE(867), 2, + STATE(944), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [35730] = 5, + [37844] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2226), 1, + anon_sym_EQ, + ACTIONS(2222), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(2224), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [37860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2084), 1, + ACTIONS(2200), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2126), 1, + ACTIONS(2230), 1, anon_sym_BQUOTE, - ACTIONS(2108), 2, + ACTIONS(2228), 2, sym__template_chars, sym_escape_sequence, - STATE(874), 2, + STATE(933), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [35748] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2092), 1, - sym_identifier, - ACTIONS(2094), 1, - anon_sym_GT, - ACTIONS(2098), 1, - sym_jsx_identifier, - ACTIONS(2128), 1, - anon_sym_SLASH, - STATE(789), 1, - sym_nested_identifier, - STATE(822), 1, - sym_jsx_namespace_name, - [35770] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2130), 1, - anon_sym_default, - ACTIONS(2133), 1, - anon_sym_RBRACE, - ACTIONS(2135), 1, - anon_sym_case, - STATE(869), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [35788] = 2, + [37878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2066), 6, + ACTIONS(2170), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, - [35800] = 6, + [37890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_EQ, - ACTIONS(2086), 1, - anon_sym_LPAREN, - STATE(1198), 1, - sym__initializer, - STATE(1258), 1, - sym_formal_parameters, - ACTIONS(2138), 2, + ACTIONS(1501), 6, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [35820] = 6, + anon_sym_EQ, + [37902] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(2168), 1, anon_sym_EQ, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1119), 1, - sym_formal_parameters, - STATE(1209), 1, + STATE(1216), 1, sym__initializer, - ACTIONS(2140), 2, + STATE(1347), 1, + sym_formal_parameters, + ACTIONS(2232), 2, sym__automatic_semicolon, anon_sym_SEMI, - [35840] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1549), 1, - anon_sym_LBRACE, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - sym_identifier, - STATE(1240), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [35858] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_BQUOTE, - ACTIONS(2149), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2144), 2, - sym__template_chars, - sym_escape_sequence, - STATE(874), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [35876] = 7, + [37922] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2184), 1, sym_identifier, - ACTIONS(2094), 1, + ACTIONS(2186), 1, anon_sym_GT, - ACTIONS(2098), 1, + ACTIONS(2190), 1, sym_jsx_identifier, - ACTIONS(2152), 1, + ACTIONS(2234), 1, anon_sym_SLASH, - STATE(789), 1, + STATE(851), 1, sym_nested_identifier, - STATE(822), 1, + STATE(870), 1, sym_jsx_namespace_name, - [35898] = 7, + [37944] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2184), 1, sym_identifier, - ACTIONS(2094), 1, + ACTIONS(2186), 1, anon_sym_GT, - ACTIONS(2098), 1, + ACTIONS(2190), 1, sym_jsx_identifier, - ACTIONS(2154), 1, + ACTIONS(2236), 1, anon_sym_SLASH, - STATE(789), 1, + STATE(851), 1, sym_nested_identifier, - STATE(822), 1, + STATE(870), 1, sym_jsx_namespace_name, - [35920] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2160), 1, - anon_sym_EQ, - ACTIONS(2156), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(2158), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [35936] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1549), 1, - anon_sym_LBRACE, - ACTIONS(1783), 1, - anon_sym_LBRACK, - ACTIONS(2162), 1, - sym_identifier, - STATE(910), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [35954] = 7, + [37966] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2184), 1, sym_identifier, - ACTIONS(2094), 1, + ACTIONS(2186), 1, anon_sym_GT, - ACTIONS(2098), 1, + ACTIONS(2190), 1, sym_jsx_identifier, - ACTIONS(2164), 1, + ACTIONS(2238), 1, anon_sym_SLASH, - STATE(789), 1, + STATE(851), 1, sym_nested_identifier, - STATE(822), 1, + STATE(870), 1, sym_jsx_namespace_name, - [35976] = 7, + [37988] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, - sym_identifier, - ACTIONS(2094), 1, - anon_sym_GT, - ACTIONS(2098), 1, - sym_jsx_identifier, - ACTIONS(2166), 1, - anon_sym_SLASH, - STATE(789), 1, - sym_nested_identifier, - STATE(822), 1, - sym_jsx_namespace_name, - [35998] = 7, + ACTIONS(2240), 1, + anon_sym_default, + ACTIONS(2242), 1, + anon_sym_RBRACE, + ACTIONS(2244), 1, + anon_sym_case, + STATE(952), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [38006] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2184), 1, sym_identifier, - ACTIONS(2094), 1, + ACTIONS(2186), 1, anon_sym_GT, - ACTIONS(2098), 1, + ACTIONS(2190), 1, sym_jsx_identifier, - ACTIONS(2168), 1, + ACTIONS(2246), 1, anon_sym_SLASH, - STATE(789), 1, + STATE(851), 1, sym_nested_identifier, - STATE(822), 1, + STATE(870), 1, sym_jsx_namespace_name, - [36020] = 2, + [38028] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [36032] = 2, + ACTIONS(2251), 1, + anon_sym_BQUOTE, + ACTIONS(2253), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2248), 2, + sym__template_chars, + sym_escape_sequence, + STATE(944), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [38046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2068), 6, + ACTIONS(2174), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, - [36044] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2170), 1, - anon_sym_default, - ACTIONS(2172), 1, - anon_sym_RBRACE, - ACTIONS(2174), 1, - anon_sym_case, - STATE(885), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [36062] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2170), 1, - anon_sym_default, - ACTIONS(2174), 1, - anon_sym_case, - ACTIONS(2176), 1, - anon_sym_RBRACE, - STATE(869), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [36080] = 7, + [38058] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2184), 1, sym_identifier, - ACTIONS(2094), 1, + ACTIONS(2186), 1, anon_sym_GT, - ACTIONS(2098), 1, + ACTIONS(2190), 1, sym_jsx_identifier, - ACTIONS(2178), 1, + ACTIONS(2256), 1, anon_sym_SLASH, - STATE(789), 1, + STATE(851), 1, sym_nested_identifier, - STATE(822), 1, + STATE(870), 1, sym_jsx_namespace_name, - [36102] = 2, + [38080] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1643), 1, + anon_sym_LBRACE, + ACTIONS(1881), 1, + anon_sym_LBRACK, + ACTIONS(2258), 1, + sym_identifier, + STATE(1200), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [38098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1423), 6, + ACTIONS(2172), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, - [36114] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2180), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(2182), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [36127] = 6, + [38110] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2184), 1, sym_identifier, ACTIONS(2186), 1, anon_sym_GT, - ACTIONS(2188), 1, + ACTIONS(2190), 1, sym_jsx_identifier, - STATE(795), 1, + ACTIONS(2260), 1, + anon_sym_SLASH, + STATE(851), 1, sym_nested_identifier, - STATE(812), 1, + STATE(870), 1, sym_jsx_namespace_name, - [36146] = 3, + [38132] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1331), 2, + ACTIONS(2200), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2264), 1, + anon_sym_BQUOTE, + ACTIONS(2262), 2, + sym__template_chars, + sym_escape_sequence, + STATE(924), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [38150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2266), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1333), 3, + ACTIONS(2268), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [36159] = 2, + anon_sym_DOT, + [38164] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(801), 5, - anon_sym_COMMA, + ACTIONS(2240), 1, + anon_sym_default, + ACTIONS(2244), 1, + anon_sym_case, + ACTIONS(2270), 1, anon_sym_RBRACE, - anon_sym_RPAREN, + STATE(925), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [38182] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1506), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, anon_sym_EQ, - anon_sym_RBRACK, - [36170] = 3, + [38194] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1339), 2, - anon_sym_SLASH, + ACTIONS(2184), 1, sym_identifier, - ACTIONS(1341), 3, - anon_sym_LBRACE, + ACTIONS(2186), 1, anon_sym_GT, + ACTIONS(2190), 1, sym_jsx_identifier, - [36183] = 6, + ACTIONS(2272), 1, + anon_sym_SLASH, + STATE(851), 1, + sym_nested_identifier, + STATE(870), 1, + sym_jsx_namespace_name, + [38216] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 1, + ACTIONS(2184), 1, sym_identifier, - ACTIONS(2094), 1, + ACTIONS(2186), 1, anon_sym_GT, - ACTIONS(2098), 1, + ACTIONS(2190), 1, sym_jsx_identifier, - STATE(789), 1, + ACTIONS(2274), 1, + anon_sym_SLASH, + STATE(851), 1, sym_nested_identifier, - STATE(822), 1, + STATE(870), 1, sym_jsx_namespace_name, - [36202] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1624), 1, - anon_sym_COMMA, - ACTIONS(1656), 1, - anon_sym_COLON, - ACTIONS(1658), 1, - anon_sym_EQ, - ACTIONS(2190), 1, - anon_sym_RBRACE, - STATE(1083), 1, - aux_sym_object_pattern_repeat1, - [36221] = 3, + [38238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 2, + ACTIONS(1432), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(2194), 3, + ACTIONS(1434), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [36234] = 3, + [38251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1331), 2, + ACTIONS(1410), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1333), 3, + ACTIONS(1412), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [36247] = 3, + [38264] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2196), 2, - anon_sym_SLASH, + ACTIONS(2276), 1, sym_identifier, - ACTIONS(2198), 3, + ACTIONS(2278), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [36260] = 6, + ACTIONS(2280), 1, + anon_sym_extends, + STATE(641), 1, + sym_class_body, + STATE(1273), 1, + sym_class_heritage, + [38283] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(2200), 1, - anon_sym_export, - ACTIONS(2202), 1, - anon_sym_class, - STATE(737), 1, - aux_sym_export_statement_repeat1, - STATE(766), 1, - sym_decorator, - [36279] = 6, + ACTIONS(2282), 1, + sym_identifier, + ACTIONS(2284), 1, + anon_sym_GT, + ACTIONS(2286), 1, + sym_jsx_identifier, + STATE(862), 1, + sym_nested_identifier, + STATE(867), 1, + sym_jsx_namespace_name, + [38302] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2204), 1, + ACTIONS(1301), 1, + anon_sym_LPAREN, + ACTIONS(2288), 1, sym_identifier, - ACTIONS(2206), 1, - anon_sym_LBRACE, - ACTIONS(2208), 1, - anon_sym_extends, - STATE(583), 1, - sym_class_body, - STATE(1247), 1, - sym_class_heritage, - [36298] = 6, + ACTIONS(2290), 1, + anon_sym_LBRACK, + ACTIONS(2292), 1, + sym_private_property_identifier, + STATE(662), 1, + sym_arguments, + [38321] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 1, + ACTIONS(2184), 1, sym_identifier, - ACTIONS(2212), 1, + ACTIONS(2186), 1, anon_sym_GT, - ACTIONS(2214), 1, + ACTIONS(2190), 1, sym_jsx_identifier, - STATE(781), 1, + STATE(851), 1, sym_nested_identifier, - STATE(807), 1, + STATE(870), 1, sym_jsx_namespace_name, - [36317] = 6, + [38340] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, - anon_sym_LBRACE, - ACTIONS(2208), 1, - anon_sym_extends, - ACTIONS(2216), 1, + ACTIONS(2294), 1, sym_identifier, - STATE(607), 1, - sym_class_body, - STATE(1194), 1, - sym_class_heritage, - [36336] = 6, + ACTIONS(2296), 1, + anon_sym_GT, + ACTIONS(2298), 1, + sym_jsx_identifier, + STATE(850), 1, + sym_nested_identifier, + STATE(872), 1, + sym_jsx_namespace_name, + [38359] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, + ACTIONS(2278), 1, anon_sym_LBRACE, - ACTIONS(2208), 1, + ACTIONS(2280), 1, anon_sym_extends, - ACTIONS(2218), 1, + ACTIONS(2300), 1, sym_identifier, - STATE(583), 1, + STATE(641), 1, sym_class_body, - STATE(1247), 1, + STATE(1273), 1, sym_class_heritage, - [36355] = 6, + [38378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2302), 2, + anon_sym_SLASH, sym_identifier, - ACTIONS(2222), 1, + ACTIONS(2304), 3, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(2224), 1, sym_jsx_identifier, - STATE(797), 1, - sym_nested_identifier, - STATE(808), 1, - sym_jsx_namespace_name, - [36374] = 6, + [38391] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, - anon_sym_LBRACE, - ACTIONS(2208), 1, + ACTIONS(2280), 1, anon_sym_extends, - ACTIONS(2226), 1, + ACTIONS(2306), 1, sym_identifier, - STATE(607), 1, + ACTIONS(2308), 1, + anon_sym_LBRACE, + STATE(541), 1, sym_class_body, - STATE(1194), 1, + STATE(1344), 1, sym_class_heritage, - [36393] = 6, + [38410] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2310), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_RBRACK, + [38421] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1718), 1, + anon_sym_COMMA, + ACTIONS(1750), 1, + anon_sym_COLON, + ACTIONS(1752), 1, + anon_sym_EQ, + ACTIONS(2312), 1, + anon_sym_RBRACE, + STATE(1118), 1, + aux_sym_object_pattern_repeat1, + [38440] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 1, + anon_sym_AT, + ACTIONS(2314), 1, + anon_sym_export, + ACTIONS(2316), 1, + anon_sym_class, + STATE(793), 1, + aux_sym_export_statement_repeat1, + STATE(836), 1, + sym_decorator, + [38459] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, + ACTIONS(2278), 1, anon_sym_LBRACE, - ACTIONS(2208), 1, + ACTIONS(2280), 1, anon_sym_extends, - ACTIONS(2228), 1, + ACTIONS(2318), 1, sym_identifier, - STATE(583), 1, + STATE(651), 1, sym_class_body, - STATE(1247), 1, + STATE(1282), 1, sym_class_heritage, - [36412] = 6, + [38478] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2208), 1, + ACTIONS(2278), 1, + anon_sym_LBRACE, + ACTIONS(2280), 1, anon_sym_extends, - ACTIONS(2230), 1, + ACTIONS(2320), 1, sym_identifier, - ACTIONS(2232), 1, - anon_sym_LBRACE, - STATE(504), 1, + STATE(651), 1, sym_class_body, - STATE(1199), 1, + STATE(1282), 1, sym_class_heritage, - [36431] = 3, + [38497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1389), 2, - anon_sym_SLASH, + ACTIONS(87), 1, + anon_sym_AT, + ACTIONS(2322), 1, + anon_sym_export, + ACTIONS(2324), 1, + anon_sym_class, + STATE(793), 1, + aux_sym_export_statement_repeat1, + STATE(836), 1, + sym_decorator, + [38516] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2326), 1, sym_identifier, - ACTIONS(1391), 3, - anon_sym_LBRACE, + ACTIONS(2328), 1, anon_sym_GT, + ACTIONS(2330), 1, sym_jsx_identifier, - [36444] = 3, + STATE(865), 1, + sym_nested_identifier, + STATE(887), 1, + sym_jsx_namespace_name, + [38535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 2, + ACTIONS(1436), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1295), 3, + ACTIONS(1438), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [36457] = 3, + [38548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1331), 2, + ACTIONS(1454), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1333), 3, + ACTIONS(1456), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [36470] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2234), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_RBRACK, - [36481] = 3, + [38561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1331), 2, + ACTIONS(1468), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1333), 3, + ACTIONS(1470), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [36494] = 3, + [38574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2236), 2, + ACTIONS(1468), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(2238), 3, + ACTIONS(1470), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [36507] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1231), 1, - anon_sym_LPAREN, - ACTIONS(2240), 1, - sym_identifier, - ACTIONS(2242), 1, - anon_sym_LBRACK, - ACTIONS(2244), 1, - sym_private_property_identifier, - STATE(567), 1, - sym_arguments, - [36526] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1658), 1, - anon_sym_EQ, - ACTIONS(1656), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(1720), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [36541] = 3, + [38587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2246), 1, - anon_sym_EQ, - ACTIONS(1085), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [36554] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1118), 1, - anon_sym_LPAREN, - ACTIONS(2249), 1, + ACTIONS(1468), 2, + anon_sym_SLASH, sym_identifier, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2253), 1, - sym_private_property_identifier, - STATE(497), 1, - sym_arguments, - [36573] = 6, + ACTIONS(1470), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [38600] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2208), 1, - anon_sym_extends, - ACTIONS(2232), 1, + ACTIONS(2278), 1, anon_sym_LBRACE, - ACTIONS(2255), 1, + ACTIONS(2280), 1, + anon_sym_extends, + ACTIONS(2332), 1, sym_identifier, - STATE(462), 1, + STATE(651), 1, sym_class_body, - STATE(1112), 1, + STATE(1282), 1, sym_class_heritage, - [36592] = 6, + [38619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(2257), 1, - anon_sym_export, - ACTIONS(2259), 1, - anon_sym_class, - STATE(737), 1, - aux_sym_export_statement_repeat1, - STATE(766), 1, - sym_decorator, - [36611] = 3, + ACTIONS(1468), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(1470), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [38632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1273), 2, + ACTIONS(1369), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1275), 3, + ACTIONS(1371), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [36624] = 6, + [38645] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1624), 1, - anon_sym_COMMA, - ACTIONS(1656), 1, - anon_sym_COLON, - ACTIONS(1658), 1, + ACTIONS(1752), 1, anon_sym_EQ, - ACTIONS(2261), 1, + ACTIONS(1750), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(1814), 2, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(1026), 1, - aux_sym_object_pattern_repeat1, - [36643] = 3, + [38660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 2, + ACTIONS(1476), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1287), 3, + ACTIONS(1478), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [36656] = 2, + [38673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1085), 5, + ACTIONS(1157), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_EQ, anon_sym_RBRACK, - [36667] = 3, + [38684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1361), 2, + ACTIONS(1343), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1363), 3, + ACTIONS(1345), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [36680] = 3, + [38697] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(431), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_RBRACK, + [38708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 2, + ACTIONS(2334), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1373), 3, + ACTIONS(2336), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [36693] = 4, + [38721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(2338), 1, anon_sym_EQ, - STATE(1064), 1, - sym__initializer, - ACTIONS(2072), 3, - sym__automatic_semicolon, + ACTIONS(1157), 4, anon_sym_COMMA, - anon_sym_SEMI, - [36708] = 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [38734] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2263), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(2265), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [36721] = 6, + ACTIONS(1718), 1, + anon_sym_COMMA, + ACTIONS(1750), 1, + anon_sym_COLON, + ACTIONS(1752), 1, + anon_sym_EQ, + ACTIONS(2341), 1, + anon_sym_RBRACE, + STATE(1093), 1, + aux_sym_object_pattern_repeat1, + [38753] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, + ACTIONS(2278), 1, anon_sym_LBRACE, - ACTIONS(2208), 1, + ACTIONS(2280), 1, anon_sym_extends, - ACTIONS(2267), 1, + ACTIONS(2343), 1, sym_identifier, - STATE(607), 1, + STATE(641), 1, sym_class_body, - STATE(1194), 1, + STATE(1273), 1, + sym_class_heritage, + [38772] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2280), 1, + anon_sym_extends, + ACTIONS(2308), 1, + anon_sym_LBRACE, + ACTIONS(2345), 1, + sym_identifier, + STATE(481), 1, + sym_class_body, + STATE(1203), 1, sym_class_heritage, - [36740] = 3, + [38791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1323), 2, + ACTIONS(2347), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1325), 3, + ACTIONS(2349), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [36753] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - anon_sym_COMMA, - STATE(980), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2271), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [36767] = 4, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(2273), 1, - anon_sym_SQUOTE, - STATE(934), 1, - aux_sym_string_repeat2, - ACTIONS(2275), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [36781] = 4, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(2273), 1, - anon_sym_DQUOTE, - STATE(933), 1, - aux_sym_string_repeat1, - ACTIONS(2277), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [36795] = 5, + [38804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, + ACTIONS(1377), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(1379), 3, anon_sym_LBRACE, - ACTIONS(2279), 1, - anon_sym_extends, - STATE(53), 1, - sym_class_body, - STATE(1115), 1, - sym_class_heritage, - [36811] = 4, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(2281), 1, - anon_sym_DQUOTE, - STATE(933), 1, - aux_sym_string_repeat1, - ACTIONS(2283), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [36825] = 4, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(2286), 1, - anon_sym_SQUOTE, - STATE(934), 1, - aux_sym_string_repeat2, - ACTIONS(2288), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [36839] = 5, + anon_sym_GT, + sym_jsx_identifier, + [38817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2291), 1, + ACTIONS(2351), 2, + anon_sym_SLASH, sym_identifier, - ACTIONS(2293), 1, - anon_sym_COMMA, - ACTIONS(2295), 1, - anon_sym_RBRACE, - STATE(1014), 1, - sym__import_export_specifier, - [36855] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2297), 1, - anon_sym_COMMA, - ACTIONS(2299), 1, - anon_sym_RPAREN, - ACTIONS(2301), 1, - anon_sym_EQ, - STATE(1081), 1, - aux_sym_formal_parameters_repeat1, - [36871] = 4, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(2303), 1, - anon_sym_SQUOTE, - STATE(990), 1, - aux_sym_string_repeat2, - ACTIONS(2305), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [36885] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2232), 1, + ACTIONS(2353), 3, anon_sym_LBRACE, - ACTIONS(2279), 1, - anon_sym_extends, - STATE(476), 1, - sym_class_body, - STATE(1219), 1, - sym_class_heritage, - [36901] = 5, + anon_sym_GT, + sym_jsx_identifier, + [38830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, + ACTIONS(2355), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(2357), 3, anon_sym_LBRACE, - ACTIONS(2279), 1, - anon_sym_extends, - STATE(571), 1, - sym_class_body, - STATE(1140), 1, - sym_class_heritage, - [36917] = 5, + anon_sym_GT, + sym_jsx_identifier, + [38843] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2279), 1, - anon_sym_extends, - ACTIONS(2307), 1, - anon_sym_LBRACE, - STATE(238), 1, - sym_class_body, - STATE(1131), 1, - sym_class_heritage, - [36933] = 4, + ACTIONS(1184), 1, + anon_sym_LPAREN, + ACTIONS(2359), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_LBRACK, + ACTIONS(2363), 1, + sym_private_property_identifier, + STATE(532), 1, + sym_arguments, + [38862] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2309), 1, - anon_sym_from, - STATE(1195), 1, - sym__from_clause, - ACTIONS(2311), 2, + ACTIONS(2168), 1, + anon_sym_EQ, + STATE(1125), 1, + sym__initializer, + ACTIONS(2164), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [36947] = 5, + [38877] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - ACTIONS(2313), 1, - sym_identifier, - ACTIONS(2315), 1, - anon_sym_STAR, - STATE(1137), 1, - sym_formal_parameters, - [36963] = 5, + ACTIONS(87), 1, + anon_sym_AT, + ACTIONS(2316), 1, + anon_sym_class, + STATE(793), 1, + aux_sym_export_statement_repeat1, + STATE(836), 1, + sym_decorator, + [38893] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2317), 1, - sym_identifier, - ACTIONS(2319), 1, - sym_jsx_identifier, - STATE(1231), 1, - sym_nested_identifier, - STATE(1315), 1, - sym_jsx_namespace_name, - [36979] = 4, - ACTIONS(1942), 1, + ACTIONS(2365), 1, + anon_sym_LBRACE, + ACTIONS(2367), 1, + anon_sym_extends, + STATE(272), 1, + sym_class_body, + STATE(1274), 1, + sym_class_heritage, + [38909] = 4, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2369), 1, anon_sym_SQUOTE, - STATE(977), 1, + STATE(1053), 1, aux_sym_string_repeat2, - ACTIONS(2323), 2, + ACTIONS(2371), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [36993] = 4, - ACTIONS(1942), 1, + [38923] = 4, + ACTIONS(2038), 1, + sym_comment, + ACTIONS(2369), 1, + anon_sym_DQUOTE, + STATE(1052), 1, + aux_sym_string_repeat1, + ACTIONS(2373), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [38937] = 4, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2375), 1, anon_sym_DQUOTE, - STATE(975), 1, + STATE(1038), 1, aux_sym_string_repeat1, - ACTIONS(2325), 2, + ACTIONS(2377), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [37007] = 5, + [38951] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, + ACTIONS(2278), 1, anon_sym_LBRACE, - ACTIONS(2279), 1, + ACTIONS(2367), 1, anon_sym_extends, - STATE(238), 1, + STATE(574), 1, sym_class_body, - STATE(1136), 1, + STATE(1289), 1, sym_class_heritage, - [37023] = 5, + [38967] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, + ACTIONS(2178), 1, + anon_sym_LPAREN, + ACTIONS(2379), 1, + sym_identifier, + ACTIONS(2381), 1, + anon_sym_STAR, + STATE(1221), 1, + sym_formal_parameters, + [38983] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, anon_sym_LBRACE, - ACTIONS(2279), 1, - anon_sym_extends, - STATE(528), 1, - sym_class_body, - STATE(1135), 1, - sym_class_heritage, - [37039] = 5, + ACTIONS(2383), 1, + anon_sym_STAR, + STATE(1407), 2, + sym_namespace_import, + sym_named_imports, + [38997] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(2385), 1, sym_identifier, - ACTIONS(2329), 1, - sym_jsx_identifier, - STATE(1255), 1, - sym_nested_identifier, - STATE(1290), 1, - sym_jsx_namespace_name, - [37055] = 2, + ACTIONS(2387), 1, + anon_sym_COMMA, + ACTIONS(2389), 1, + anon_sym_RBRACE, + STATE(1123), 1, + sym__import_export_specifier, + [39013] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1500), 4, - sym__automatic_semicolon, + ACTIONS(2178), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2391), 1, + sym_identifier, + ACTIONS(2393), 1, + anon_sym_STAR, + STATE(1281), 1, + sym_formal_parameters, + [39029] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2395), 1, + anon_sym_COMMA, + ACTIONS(2397), 1, + anon_sym_RPAREN, + ACTIONS(2399), 1, anon_sym_EQ, - [37065] = 5, + STATE(1128), 1, + aux_sym_formal_parameters_repeat1, + [39045] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, + ACTIONS(2278), 1, anon_sym_LBRACE, - ACTIONS(2279), 1, + ACTIONS(2367), 1, anon_sym_extends, - STATE(52), 1, + STATE(274), 1, sym_class_body, - STATE(1242), 1, + STATE(1277), 1, sym_class_heritage, - [37081] = 5, + [39061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, - anon_sym_LBRACE, - ACTIONS(2279), 1, - anon_sym_extends, - STATE(514), 1, - sym_class_body, - STATE(1149), 1, - sym_class_heritage, - [37097] = 5, + ACTIONS(1267), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [39071] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, + ACTIONS(2401), 1, + anon_sym_COMMA, + STATE(1047), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(2403), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [39085] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2405), 1, sym_identifier, - ACTIONS(2333), 1, - anon_sym_STAR, - STATE(1124), 1, - sym_formal_parameters, - [37113] = 2, + ACTIONS(2407), 1, + sym_jsx_identifier, + STATE(1314), 1, + sym_nested_identifier, + STATE(1368), 1, + sym_jsx_namespace_name, + [39101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1211), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1750), 2, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, - [37123] = 5, + ACTIONS(1817), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [39113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(2335), 1, - anon_sym_class, - STATE(737), 1, - aux_sym_export_statement_repeat1, - STATE(766), 1, - sym_decorator, - [37139] = 5, + ACTIONS(2401), 1, + anon_sym_COMMA, + STATE(1047), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(2409), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [39127] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_AT, - ACTIONS(2337), 1, + ACTIONS(2411), 1, anon_sym_class, - STATE(737), 1, + STATE(793), 1, aux_sym_export_statement_repeat1, - STATE(766), 1, + STATE(836), 1, sym_decorator, - [37155] = 5, + [39143] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - ACTIONS(2339), 1, + ACTIONS(2413), 1, sym_identifier, - ACTIONS(2341), 1, - anon_sym_STAR, - STATE(1137), 1, - sym_formal_parameters, - [37171] = 5, + ACTIONS(2415), 1, + sym_jsx_identifier, + STATE(1242), 1, + sym_nested_identifier, + STATE(1410), 1, + sym_jsx_namespace_name, + [39159] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2279), 1, - anon_sym_extends, - ACTIONS(2307), 1, + ACTIONS(2278), 1, anon_sym_LBRACE, - STATE(237), 1, + ACTIONS(2367), 1, + anon_sym_extends, + STATE(578), 1, sym_class_body, - STATE(1206), 1, + STATE(1279), 1, sym_class_heritage, - [37187] = 2, + [39175] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2343), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [37197] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1108), 1, - anon_sym_LBRACE, - ACTIONS(2345), 1, - anon_sym_STAR, - STATE(1366), 2, - sym_namespace_import, - sym_named_imports, - [37211] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, - anon_sym_COMMA, - ACTIONS(2301), 1, - anon_sym_EQ, - ACTIONS(2347), 1, - anon_sym_RBRACK, - STATE(1094), 1, - aux_sym_array_pattern_repeat1, - [37227] = 5, + ACTIONS(87), 1, + anon_sym_AT, + ACTIONS(2324), 1, + anon_sym_class, + STATE(793), 1, + aux_sym_export_statement_repeat1, + STATE(836), 1, + sym_decorator, + [39191] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(681), 1, anon_sym_COMMA, - ACTIONS(2301), 1, + ACTIONS(2399), 1, anon_sym_EQ, - ACTIONS(2349), 1, + ACTIONS(2417), 1, anon_sym_RBRACK, - STATE(1096), 1, + STATE(1134), 1, aux_sym_array_pattern_repeat1, - [37243] = 5, + [39207] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_AT, - ACTIONS(2259), 1, + ACTIONS(2419), 1, anon_sym_class, - STATE(737), 1, + STATE(793), 1, aux_sym_export_statement_repeat1, - STATE(766), 1, + STATE(836), 1, sym_decorator, - [37259] = 4, - ACTIONS(1942), 1, + [39223] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_DQUOTE, - STATE(931), 1, - aux_sym_string_repeat1, - ACTIONS(2353), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [37273] = 5, + ACTIONS(2385), 1, + sym_identifier, + ACTIONS(2421), 1, + anon_sym_COMMA, + ACTIONS(2423), 1, + anon_sym_RBRACE, + STATE(1112), 1, + sym__import_export_specifier, + [39239] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 1, + ACTIONS(2425), 1, sym_identifier, - ACTIONS(2357), 1, + ACTIONS(2427), 1, sym_jsx_identifier, - STATE(1235), 1, + STATE(1286), 1, sym_nested_identifier, - STATE(1306), 1, + STATE(1389), 1, sym_jsx_namespace_name, - [37289] = 5, + [39255] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2291), 1, - sym_identifier, - ACTIONS(2359), 1, - anon_sym_COMMA, - ACTIONS(2361), 1, - anon_sym_RBRACE, - STATE(1055), 1, - sym__import_export_specifier, - [37305] = 4, - ACTIONS(1942), 1, - sym_comment, - ACTIONS(2351), 1, - anon_sym_SQUOTE, - STATE(930), 1, - aux_sym_string_repeat2, - ACTIONS(2363), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [37319] = 4, + ACTIONS(2308), 1, + anon_sym_LBRACE, + ACTIONS(2367), 1, + anon_sym_extends, + STATE(514), 1, + sym_class_body, + STATE(1251), 1, + sym_class_heritage, + [39271] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_COMMA, - STATE(980), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2365), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37333] = 4, + ACTIONS(87), 1, + anon_sym_AT, + ACTIONS(2429), 1, + anon_sym_class, + STATE(793), 1, + aux_sym_export_statement_repeat1, + STATE(836), 1, + sym_decorator, + [39287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - anon_sym_COMMA, - STATE(967), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2367), 2, + ACTIONS(2431), 1, + anon_sym_from, + STATE(1315), 1, + sym__from_clause, + ACTIONS(2433), 2, sym__automatic_semicolon, anon_sym_SEMI, - [37347] = 5, + [39301] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, + ACTIONS(2308), 1, anon_sym_LBRACE, - ACTIONS(2279), 1, + ACTIONS(2367), 1, anon_sym_extends, - STATE(531), 1, + STATE(495), 1, sym_class_body, - STATE(1108), 1, + STATE(1224), 1, sym_class_heritage, - [37363] = 5, + [39317] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2369), 1, + ACTIONS(2178), 1, + anon_sym_LPAREN, + ACTIONS(2435), 1, sym_identifier, - ACTIONS(2371), 1, - sym_jsx_identifier, - STATE(1133), 1, - sym_nested_identifier, - STATE(1365), 1, - sym_jsx_namespace_name, - [37379] = 3, + ACTIONS(2437), 1, + anon_sym_STAR, + STATE(1281), 1, + sym_formal_parameters, + [39333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1656), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(1733), 2, + ACTIONS(2439), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [39343] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2401), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [37391] = 5, + STATE(1013), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(2441), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [39357] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - ACTIONS(2373), 1, + ACTIONS(2443), 1, sym_identifier, - ACTIONS(2375), 1, + ACTIONS(2445), 1, anon_sym_STAR, - STATE(1137), 1, + STATE(1295), 1, sym_formal_parameters, - [37407] = 5, + [39373] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - ACTIONS(2377), 1, - sym_identifier, - ACTIONS(2379), 1, - anon_sym_STAR, - STATE(1105), 1, - sym_formal_parameters, - [37423] = 5, + ACTIONS(2278), 1, + anon_sym_LBRACE, + ACTIONS(2367), 1, + anon_sym_extends, + STATE(67), 1, + sym_class_body, + STATE(1301), 1, + sym_class_heritage, + [39389] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - ACTIONS(2381), 1, + ACTIONS(2447), 1, sym_identifier, - ACTIONS(2383), 1, + ACTIONS(2449), 1, anon_sym_STAR, - STATE(1189), 1, + STATE(1303), 1, sym_formal_parameters, - [37439] = 4, - ACTIONS(1942), 1, + [39405] = 4, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2385), 1, + ACTIONS(2451), 1, anon_sym_DQUOTE, - STATE(933), 1, + STATE(1000), 1, aux_sym_string_repeat1, - ACTIONS(2277), 2, + ACTIONS(2453), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [37453] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(2202), 1, - anon_sym_class, - STATE(737), 1, - aux_sym_export_statement_repeat1, - STATE(766), 1, - sym_decorator, - [37469] = 4, - ACTIONS(1942), 1, + [39419] = 4, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2385), 1, + ACTIONS(2451), 1, anon_sym_SQUOTE, - STATE(934), 1, + STATE(999), 1, aux_sym_string_repeat2, - ACTIONS(2275), 2, + ACTIONS(2455), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [37483] = 4, + [39433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1656), 1, - anon_sym_COLON, - ACTIONS(1658), 1, + ACTIONS(1750), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_EQ, - ACTIONS(2387), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [37497] = 5, + [39443] = 4, + ACTIONS(2038), 1, + sym_comment, + ACTIONS(2375), 1, + anon_sym_SQUOTE, + STATE(1037), 1, + aux_sym_string_repeat2, + ACTIONS(2457), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [39457] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - ACTIONS(2389), 1, + ACTIONS(2459), 1, sym_identifier, - ACTIONS(2391), 1, + ACTIONS(2461), 1, anon_sym_STAR, - STATE(1124), 1, + STATE(1295), 1, sym_formal_parameters, - [37513] = 4, - ACTIONS(3), 1, + [39473] = 4, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2393), 1, - anon_sym_COMMA, - STATE(980), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2396), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [37527] = 4, - ACTIONS(1942), 1, + ACTIONS(2463), 1, + anon_sym_SQUOTE, + STATE(1053), 1, + aux_sym_string_repeat2, + ACTIONS(2371), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [39487] = 4, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(2463), 1, anon_sym_DQUOTE, - STATE(989), 1, + STATE(1052), 1, aux_sym_string_repeat1, - ACTIONS(2398), 2, + ACTIONS(2373), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [37541] = 2, + [39501] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1656), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(681), 1, + anon_sym_COMMA, + ACTIONS(2399), 1, anon_sym_EQ, - [37551] = 5, + ACTIONS(2465), 1, + anon_sym_RBRACK, + STATE(1106), 1, + aux_sym_array_pattern_repeat1, + [39517] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, + ACTIONS(2278), 1, anon_sym_LBRACE, - ACTIONS(2279), 1, + ACTIONS(2367), 1, anon_sym_extends, - STATE(237), 1, + STATE(632), 1, sym_class_body, - STATE(1103), 1, + STATE(1331), 1, sym_class_heritage, - [37567] = 5, + [39533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(2400), 1, - anon_sym_class, - STATE(737), 1, - aux_sym_export_statement_repeat1, - STATE(766), 1, - sym_decorator, - [37583] = 5, + ACTIONS(2467), 1, + anon_sym_COMMA, + STATE(1041), 1, + aux_sym_array_repeat1, + ACTIONS(1521), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [39547] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2178), 1, + anon_sym_LPAREN, + ACTIONS(2470), 1, + sym_identifier, + ACTIONS(2472), 1, + anon_sym_STAR, + STATE(1295), 1, + sym_formal_parameters, + [39563] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(87), 1, anon_sym_AT, - ACTIONS(2402), 1, + ACTIONS(2474), 1, anon_sym_class, - STATE(737), 1, + STATE(793), 1, aux_sym_export_statement_repeat1, - STATE(766), 1, + STATE(836), 1, sym_decorator, - [37599] = 4, + [39579] = 4, + ACTIONS(2038), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_SQUOTE, + STATE(1050), 1, + aux_sym_string_repeat2, + ACTIONS(2478), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [39593] = 4, + ACTIONS(2038), 1, + sym_comment, + ACTIONS(2476), 1, + anon_sym_DQUOTE, + STATE(1049), 1, + aux_sym_string_repeat1, + ACTIONS(2480), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [39607] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2178), 1, + anon_sym_LPAREN, + ACTIONS(2482), 1, + sym_identifier, + ACTIONS(2484), 1, + anon_sym_STAR, + STATE(1281), 1, + sym_formal_parameters, + [39623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(2486), 1, anon_sym_COMMA, - STATE(929), 1, + STATE(1047), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(2404), 2, + ACTIONS(2489), 2, sym__automatic_semicolon, anon_sym_SEMI, - [37613] = 5, + [39637] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, + ACTIONS(2278), 1, anon_sym_LBRACE, - ACTIONS(2279), 1, + ACTIONS(2367), 1, anon_sym_extends, - STATE(591), 1, + STATE(606), 1, sym_class_body, - STATE(1117), 1, + STATE(1265), 1, sym_class_heritage, - [37629] = 4, + [39653] = 4, + ACTIONS(2038), 1, + sym_comment, + ACTIONS(2491), 1, + anon_sym_DQUOTE, + STATE(1052), 1, + aux_sym_string_repeat1, + ACTIONS(2373), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [39667] = 4, + ACTIONS(2038), 1, + sym_comment, + ACTIONS(2491), 1, + anon_sym_SQUOTE, + STATE(1053), 1, + aux_sym_string_repeat2, + ACTIONS(2371), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [39681] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 1, - anon_sym_COMMA, - STATE(988), 1, - aux_sym_array_repeat1, - ACTIONS(1418), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [37643] = 4, - ACTIONS(1942), 1, + ACTIONS(2278), 1, + anon_sym_LBRACE, + ACTIONS(2367), 1, + anon_sym_extends, + STATE(272), 1, + sym_class_body, + STATE(1343), 1, + sym_class_heritage, + [39697] = 4, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2409), 1, + ACTIONS(2493), 1, anon_sym_DQUOTE, - STATE(933), 1, + STATE(1052), 1, aux_sym_string_repeat1, - ACTIONS(2277), 2, + ACTIONS(2495), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [37657] = 4, - ACTIONS(1942), 1, + [39711] = 4, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2409), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - STATE(934), 1, + STATE(1053), 1, aux_sym_string_repeat2, - ACTIONS(2275), 2, + ACTIONS(2500), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [37671] = 5, + [39725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(1553), 4, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(2411), 1, + anon_sym_SEMI, + anon_sym_EQ, + [39735] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2503), 1, sym_identifier, - ACTIONS(2413), 1, - anon_sym_STAR, - STATE(1124), 1, - sym_formal_parameters, - [37687] = 4, + ACTIONS(2505), 1, + sym_jsx_identifier, + STATE(1204), 1, + sym_nested_identifier, + STATE(1446), 1, + sym_jsx_namespace_name, + [39751] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(75), 1, - anon_sym_DQUOTE, - ACTIONS(77), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_string, - [37700] = 4, + ACTIONS(2278), 1, + anon_sym_LBRACE, + ACTIONS(2367), 1, + anon_sym_extends, + STATE(77), 1, + sym_class_body, + STATE(1202), 1, + sym_class_heritage, + [39767] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(2401), 1, anon_sym_COMMA, - ACTIONS(2417), 1, - anon_sym_RBRACE, - STATE(1045), 1, - aux_sym_object_repeat1, - [37713] = 2, - ACTIONS(1942), 1, + STATE(1010), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(2507), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [39781] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1331), 3, + ACTIONS(2365), 1, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [37722] = 2, - ACTIONS(1942), 1, + ACTIONS(2367), 1, + anon_sym_extends, + STATE(274), 1, + sym_class_body, + STATE(1192), 1, + sym_class_heritage, + [39797] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1339), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [37731] = 2, - ACTIONS(1942), 1, + ACTIONS(1750), 1, + anon_sym_COLON, + ACTIONS(1752), 1, + anon_sym_EQ, + ACTIONS(2509), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [39811] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [37740] = 2, + ACTIONS(2511), 1, + anon_sym_COMMA, + ACTIONS(2513), 1, + anon_sym_RBRACE, + STATE(1121), 1, + aux_sym_object_repeat1, + [39824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 3, - sym__automatic_semicolon, + ACTIONS(2515), 1, anon_sym_COMMA, - anon_sym_SEMI, - [37749] = 4, + ACTIONS(2518), 1, + anon_sym_RBRACE, + STATE(1061), 1, + aux_sym_named_imports_repeat1, + [39837] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2291), 1, - sym_identifier, - ACTIONS(2419), 1, + ACTIONS(1718), 1, + anon_sym_COMMA, + ACTIONS(2520), 1, anon_sym_RBRACE, - STATE(1259), 1, - sym__import_export_specifier, - [37762] = 2, - ACTIONS(1942), 1, + STATE(1122), 1, + aux_sym_object_pattern_repeat1, + [39850] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1331), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [37771] = 2, - ACTIONS(1942), 1, + ACTIONS(2511), 1, + anon_sym_COMMA, + ACTIONS(2522), 1, + anon_sym_RBRACE, + STATE(1121), 1, + aux_sym_object_repeat1, + [39863] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1331), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [37780] = 2, - ACTIONS(1942), 1, + ACTIONS(2524), 1, + anon_sym_LPAREN, + ACTIONS(2526), 1, + anon_sym_await, + STATE(42), 1, + sym__for_header, + [39876] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1273), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [37789] = 4, + ACTIONS(2511), 1, + anon_sym_COMMA, + ACTIONS(2522), 1, + anon_sym_RBRACE, + STATE(1095), 1, + aux_sym_object_repeat1, + [39889] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2421), 1, + ACTIONS(1718), 1, anon_sym_COMMA, - ACTIONS(2423), 1, + ACTIONS(2520), 1, anon_sym_RBRACE, - STATE(1087), 1, - aux_sym_named_imports_repeat1, - [37802] = 2, - ACTIONS(1942), 1, + STATE(1094), 1, + aux_sym_object_pattern_repeat1, + [39902] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [37811] = 4, + ACTIONS(681), 1, + anon_sym_COMMA, + ACTIONS(2465), 1, + anon_sym_RBRACK, + STATE(1106), 1, + aux_sym_array_pattern_repeat1, + [39915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - ACTIONS(2425), 1, + ACTIONS(702), 1, + anon_sym_COMMA, + ACTIONS(1513), 1, + anon_sym_RBRACK, + STATE(1105), 1, + aux_sym_array_repeat1, + [39928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2528), 1, sym_identifier, - STATE(1207), 1, - sym_formal_parameters, - [37824] = 2, - ACTIONS(1942), 1, + ACTIONS(2530), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [39939] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [37833] = 3, + ACTIONS(702), 1, + anon_sym_COMMA, + ACTIONS(1513), 1, + anon_sym_RBRACK, + STATE(1041), 1, + aux_sym_array_repeat1, + [39952] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_EQ, - ACTIONS(2427), 2, + ACTIONS(681), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [37844] = 4, + ACTIONS(2465), 1, + anon_sym_RBRACK, + STATE(1135), 1, + aux_sym_array_pattern_repeat1, + [39965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, + ACTIONS(2532), 1, sym_identifier, - ACTIONS(2242), 1, - anon_sym_LBRACK, - ACTIONS(2244), 1, - sym_private_property_identifier, - [37857] = 2, - ACTIONS(1942), 1, + ACTIONS(2534), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [39976] = 2, + ACTIONS(2038), 1, + sym_comment, + ACTIONS(1410), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [39985] = 2, + ACTIONS(2038), 1, sym_comment, - ACTIONS(1323), 3, + ACTIONS(1436), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [37866] = 4, + [39994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - ACTIONS(2429), 1, + ACTIONS(2536), 1, sym_identifier, - STATE(1145), 1, + STATE(1214), 1, sym_formal_parameters, - [37879] = 4, + [40007] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - ACTIONS(2431), 1, + ACTIONS(2538), 1, sym_identifier, - STATE(1125), 1, - sym_formal_parameters, - [37892] = 3, + STATE(782), 1, + sym_decorator_member_expression, + STATE(844), 1, + sym_decorator_call_expression, + [40020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_EQ, - ACTIONS(2433), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [37903] = 2, + ACTIONS(2178), 1, + anon_sym_LPAREN, + ACTIONS(2540), 1, + sym_identifier, + STATE(1292), 1, + sym_formal_parameters, + [40033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2435), 3, - sym__automatic_semicolon, + ACTIONS(2431), 1, anon_sym_from, - anon_sym_SEMI, - [37912] = 3, + ACTIONS(2542), 1, + anon_sym_as, + STATE(1298), 1, + sym__from_clause, + [40046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2439), 1, - anon_sym_as, - ACTIONS(2437), 2, + ACTIONS(1718), 1, anon_sym_COMMA, + ACTIONS(2544), 1, anon_sym_RBRACE, - [37923] = 4, + STATE(1119), 1, + aux_sym_object_pattern_repeat1, + [40059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2441), 1, + ACTIONS(2511), 1, anon_sym_COMMA, - ACTIONS(2443), 1, + ACTIONS(2546), 1, anon_sym_RBRACE, - STATE(1059), 1, - aux_sym_export_clause_repeat1, - [37936] = 4, - ACTIONS(3), 1, + STATE(1120), 1, + aux_sym_object_repeat1, + [40072] = 2, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2433), 1, - anon_sym_RPAREN, - ACTIONS(2445), 1, - anon_sym_COMMA, - STATE(1015), 1, - aux_sym_formal_parameters_repeat1, - [37949] = 2, - ACTIONS(1942), 1, + ACTIONS(1454), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [40081] = 2, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2448), 3, + ACTIONS(1468), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [37958] = 2, - ACTIONS(1942), 1, + [40090] = 2, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2448), 3, + ACTIONS(1468), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [37967] = 4, - ACTIONS(3), 1, + [40099] = 2, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2450), 1, - anon_sym_LPAREN, - ACTIONS(2452), 1, - anon_sym_await, - STATE(26), 1, - sym__for_header, - [37980] = 2, - ACTIONS(1942), 1, + ACTIONS(1468), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [40108] = 2, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2448), 3, + ACTIONS(1468), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [37989] = 4, + [40117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - ACTIONS(2454), 1, - sym_identifier, - STATE(1145), 1, + ACTIONS(2548), 1, + anon_sym_COLON, + STATE(1347), 1, sym_formal_parameters, - [38002] = 2, - ACTIONS(1942), 1, + [40130] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + sym_identifier, + ACTIONS(2361), 1, + anon_sym_LBRACK, + ACTIONS(2363), 1, + sym_private_property_identifier, + [40143] = 2, + ACTIONS(2038), 1, + sym_comment, + ACTIONS(1369), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [40152] = 2, + ACTIONS(2038), 1, + sym_comment, + ACTIONS(1476), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [40161] = 2, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2448), 3, + ACTIONS(1432), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [38011] = 4, + [40170] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - ACTIONS(2456), 1, - anon_sym_COLON, - STATE(1258), 1, - sym_formal_parameters, - [38024] = 4, + ACTIONS(2511), 1, + anon_sym_COMMA, + ACTIONS(2546), 1, + anon_sym_RBRACE, + STATE(1121), 1, + aux_sym_object_repeat1, + [40183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2550), 1, + anon_sym_EQ, + ACTIONS(1121), 2, + anon_sym_in, + anon_sym_of, + [40194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, + ACTIONS(1718), 1, anon_sym_COMMA, - ACTIONS(2458), 1, - anon_sym_RPAREN, - STATE(988), 1, - aux_sym_array_repeat1, - [38037] = 3, + ACTIONS(2552), 1, + anon_sym_RBRACE, + STATE(1122), 1, + aux_sym_object_pattern_repeat1, + [40207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2460), 1, - sym_identifier, - ACTIONS(2462), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [38048] = 4, + ACTIONS(1718), 1, + anon_sym_COMMA, + ACTIONS(2554), 1, + anon_sym_RBRACE, + STATE(1122), 1, + aux_sym_object_pattern_repeat1, + [40220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(2511), 1, anon_sym_COMMA, - ACTIONS(2464), 1, + ACTIONS(2556), 1, anon_sym_RBRACE, - STATE(1048), 1, + STATE(1121), 1, aux_sym_object_repeat1, - [38061] = 4, + [40233] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2310), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACK, + [40242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1624), 1, + ACTIONS(1718), 1, anon_sym_COMMA, - ACTIONS(2466), 1, + ACTIONS(2544), 1, anon_sym_RBRACE, - STATE(1049), 1, + STATE(1122), 1, aux_sym_object_pattern_repeat1, - [38074] = 3, + [40255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 1, - sym_identifier, - ACTIONS(2470), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [38085] = 2, - ACTIONS(1942), 1, + ACTIONS(2395), 1, + anon_sym_COMMA, + ACTIONS(2397), 1, + anon_sym_RPAREN, + STATE(1128), 1, + aux_sym_formal_parameters_repeat1, + [40268] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2180), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [38094] = 4, + ACTIONS(681), 1, + anon_sym_COMMA, + ACTIONS(2417), 1, + anon_sym_RBRACK, + STATE(1134), 1, + aux_sym_array_pattern_repeat1, + [40281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - ACTIONS(2472), 1, + ACTIONS(702), 1, + anon_sym_COMMA, + ACTIONS(1488), 1, + anon_sym_RBRACK, + STATE(1133), 1, + aux_sym_array_repeat1, + [40294] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2385), 1, sym_identifier, - STATE(1207), 1, - sym_formal_parameters, - [38107] = 4, + ACTIONS(2558), 1, + anon_sym_RBRACE, + STATE(1199), 1, + sym__import_export_specifier, + [40307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1920), 1, - anon_sym_COLON, - ACTIONS(1928), 1, - anon_sym_DOT, - ACTIONS(2474), 1, - anon_sym_GT, - [38120] = 2, + ACTIONS(702), 1, + anon_sym_COMMA, + ACTIONS(1488), 1, + anon_sym_RBRACK, + STATE(1041), 1, + aux_sym_array_repeat1, + [40320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [38129] = 4, + ACTIONS(681), 1, + anon_sym_COMMA, + ACTIONS(2417), 1, + anon_sym_RBRACK, + STATE(1135), 1, + aux_sym_array_pattern_repeat1, + [40333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - ACTIONS(2478), 1, + ACTIONS(2560), 1, sym_identifier, - STATE(1145), 1, + STATE(1292), 1, sym_formal_parameters, - [38142] = 4, + [40346] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(702), 1, + anon_sym_COMMA, + ACTIONS(2562), 1, + anon_sym_RBRACK, + STATE(1041), 1, + aux_sym_array_repeat1, + [40359] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(681), 1, + anon_sym_COMMA, + ACTIONS(2564), 1, + anon_sym_RBRACK, + STATE(1135), 1, + aux_sym_array_pattern_repeat1, + [40372] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2291), 1, + ACTIONS(2288), 1, sym_identifier, - ACTIONS(2480), 1, - anon_sym_RBRACE, - STATE(1244), 1, - sym__import_export_specifier, - [38155] = 4, + ACTIONS(2290), 1, + anon_sym_LBRACK, + ACTIONS(2292), 1, + sym_private_property_identifier, + [40385] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(811), 1, - anon_sym_while, - ACTIONS(2482), 1, - anon_sym_else, - STATE(293), 1, - sym_else_clause, - [38168] = 2, + ACTIONS(75), 1, + anon_sym_DQUOTE, + ACTIONS(77), 1, + anon_sym_SQUOTE, + STATE(1280), 1, + sym_string, + [40398] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2178), 1, + anon_sym_LPAREN, + ACTIONS(2566), 1, + sym_identifier, + STATE(1214), 1, + sym_formal_parameters, + [40411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 3, + ACTIONS(2568), 3, sym__automatic_semicolon, anon_sym_from, anon_sym_SEMI, - [38177] = 4, + [40420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2484), 1, + ACTIONS(2572), 1, + anon_sym_as, + ACTIONS(2570), 2, anon_sym_COMMA, - ACTIONS(2487), 1, anon_sym_RBRACE, - STATE(1036), 1, - aux_sym_export_clause_repeat1, - [38190] = 4, + [40431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2489), 1, - sym_identifier, - STATE(716), 1, - sym_decorator_member_expression, - STATE(770), 1, - sym_decorator_call_expression, - [38203] = 4, + ACTIONS(2574), 1, + anon_sym_COMMA, + ACTIONS(2576), 1, + anon_sym_RBRACE, + STATE(1147), 1, + aux_sym_export_clause_repeat1, + [40444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2491), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - ACTIONS(2493), 1, - anon_sym_await, - STATE(36), 1, - sym__for_header, - [38216] = 4, + ACTIONS(2578), 1, + sym_identifier, + STATE(1292), 1, + sym_formal_parameters, + [40457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1624), 1, + ACTIONS(702), 1, anon_sym_COMMA, - ACTIONS(2495), 1, - anon_sym_RBRACE, - STATE(1084), 1, - aux_sym_object_pattern_repeat1, - [38229] = 4, + ACTIONS(1515), 1, + anon_sym_RPAREN, + STATE(1138), 1, + aux_sym_array_repeat1, + [40470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(702), 1, anon_sym_COMMA, - ACTIONS(2497), 1, - anon_sym_RBRACE, - STATE(1085), 1, - aux_sym_object_repeat1, - [38242] = 3, + ACTIONS(1515), 1, + anon_sym_RPAREN, + STATE(1041), 1, + aux_sym_array_repeat1, + [40483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2499), 1, - anon_sym_EQ, - ACTIONS(2234), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [38253] = 4, + ACTIONS(873), 1, + anon_sym_while, + ACTIONS(2580), 1, + anon_sym_else, + STATE(344), 1, + sym_else_clause, + [40496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(2511), 1, anon_sym_COMMA, - ACTIONS(2497), 1, + ACTIONS(2582), 1, anon_sym_RBRACE, - STATE(1048), 1, + STATE(1121), 1, aux_sym_object_repeat1, - [38266] = 4, + [40509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1624), 1, + ACTIONS(1718), 1, anon_sym_COMMA, - ACTIONS(2495), 1, + ACTIONS(2584), 1, anon_sym_RBRACE, - STATE(1049), 1, + STATE(1122), 1, aux_sym_object_pattern_repeat1, - [38279] = 4, + [40522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1624), 1, + ACTIONS(1718), 1, anon_sym_COMMA, - ACTIONS(2501), 1, + ACTIONS(2586), 1, anon_sym_RBRACE, - STATE(1049), 1, + STATE(1122), 1, aux_sym_object_pattern_repeat1, - [38292] = 4, + [40535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(2511), 1, anon_sym_COMMA, - ACTIONS(2503), 1, + ACTIONS(2588), 1, anon_sym_RBRACE, - STATE(1048), 1, + STATE(1121), 1, aux_sym_object_repeat1, - [38305] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2291), 1, - sym_identifier, - ACTIONS(2505), 1, - anon_sym_RBRACE, - STATE(1259), 1, - sym__import_export_specifier, - [38318] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - anon_sym_COLON, - ACTIONS(1928), 1, - anon_sym_DOT, - ACTIONS(2507), 1, - anon_sym_GT, - [38331] = 4, + [40548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2509), 1, + ACTIONS(2590), 1, anon_sym_COMMA, - ACTIONS(2512), 1, + ACTIONS(2593), 1, anon_sym_RBRACE, - STATE(1048), 1, + STATE(1121), 1, aux_sym_object_repeat1, - [38344] = 4, + [40561] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 1, + ACTIONS(2595), 1, anon_sym_COMMA, - ACTIONS(2517), 1, + ACTIONS(2598), 1, anon_sym_RBRACE, - STATE(1049), 1, + STATE(1122), 1, aux_sym_object_pattern_repeat1, - [38357] = 4, + [40574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2309), 1, - anon_sym_from, - ACTIONS(2519), 1, - anon_sym_as, - STATE(1163), 1, - sym__from_clause, - [38370] = 4, + ACTIONS(2600), 1, + anon_sym_COMMA, + ACTIONS(2602), 1, + anon_sym_RBRACE, + STATE(1151), 1, + aux_sym_named_imports_repeat1, + [40587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1920), 1, - anon_sym_COLON, - ACTIONS(1928), 1, - anon_sym_DOT, - ACTIONS(2521), 1, - anon_sym_GT, - [38383] = 3, + ACTIONS(2604), 1, + anon_sym_LPAREN, + ACTIONS(2606), 1, + anon_sym_await, + STATE(40), 1, + sym__for_header, + [40600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(444), 1, + ACTIONS(2608), 3, sym__automatic_semicolon, - ACTIONS(440), 2, - anon_sym_else, - anon_sym_while, - [38394] = 4, + anon_sym_COMMA, + anon_sym_SEMI, + [40609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_COMMA, - ACTIONS(2347), 1, - anon_sym_RBRACK, - STATE(1098), 1, - aux_sym_array_pattern_repeat1, - [38407] = 4, + ACTIONS(2610), 1, + anon_sym_EQ, + ACTIONS(1121), 2, + anon_sym_in, + anon_sym_of, + [40620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_COMMA, - ACTIONS(1451), 1, - anon_sym_RBRACK, - STATE(988), 1, - aux_sym_array_repeat1, - [38420] = 4, + ACTIONS(2178), 1, + anon_sym_LPAREN, + ACTIONS(2612), 1, + sym_identifier, + STATE(1305), 1, + sym_formal_parameters, + [40633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, + ACTIONS(1960), 1, + anon_sym_RPAREN, + ACTIONS(2614), 1, anon_sym_COMMA, - ACTIONS(2525), 1, - anon_sym_RBRACE, - STATE(1002), 1, - aux_sym_named_imports_repeat1, - [38433] = 4, + STATE(1157), 1, + aux_sym_formal_parameters_repeat1, + [40646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, + ACTIONS(2616), 1, + anon_sym_EQ, + ACTIONS(2310), 2, anon_sym_COMMA, - ACTIONS(1451), 1, - anon_sym_RBRACK, - STATE(1093), 1, - aux_sym_array_repeat1, - [38446] = 4, + anon_sym_RBRACE, + [40657] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_COMMA, - ACTIONS(2349), 1, - anon_sym_RBRACK, - STATE(1096), 1, - aux_sym_array_pattern_repeat1, - [38459] = 4, + ACTIONS(2618), 1, + anon_sym_LBRACE, + ACTIONS(2620), 1, + anon_sym_LPAREN, + STATE(285), 1, + sym_statement_block, + [40670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, + ACTIONS(1521), 3, anon_sym_COMMA, - ACTIONS(1453), 1, + anon_sym_RPAREN, anon_sym_RBRACK, - STATE(1095), 1, - aux_sym_array_repeat1, - [38472] = 4, + [40679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2527), 1, + ACTIONS(2399), 1, + anon_sym_EQ, + ACTIONS(2622), 2, anon_sym_COMMA, - ACTIONS(2529), 1, - anon_sym_RBRACE, - STATE(1036), 1, - aux_sym_export_clause_repeat1, - [38485] = 4, + anon_sym_RBRACK, + [40690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, + ACTIONS(702), 1, anon_sym_COMMA, - ACTIONS(1453), 1, + ACTIONS(2624), 1, anon_sym_RBRACK, - STATE(988), 1, + STATE(1041), 1, aux_sym_array_repeat1, - [38498] = 4, + [40703] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(681), 1, anon_sym_COMMA, - ACTIONS(2349), 1, + ACTIONS(2626), 1, anon_sym_RBRACK, - STATE(1098), 1, + STATE(1135), 1, aux_sym_array_pattern_repeat1, - [38511] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2531), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [38520] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2291), 1, - sym_identifier, - ACTIONS(2533), 1, - anon_sym_RBRACE, - STATE(1244), 1, - sym__import_export_specifier, - [38533] = 2, + [40716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2535), 3, - sym__automatic_semicolon, + ACTIONS(2622), 1, + anon_sym_RBRACK, + ACTIONS(2628), 1, anon_sym_COMMA, - anon_sym_SEMI, - [38542] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2537), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [38551] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2539), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [38560] = 4, + STATE(1135), 1, + aux_sym_array_pattern_repeat1, + [40729] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1624), 1, - anon_sym_COMMA, - ACTIONS(2541), 1, - anon_sym_RBRACE, - STATE(1044), 1, - aux_sym_object_pattern_repeat1, - [38573] = 2, - ACTIONS(1942), 1, + ACTIONS(2016), 1, + anon_sym_COLON, + ACTIONS(2024), 1, + anon_sym_DOT, + ACTIONS(2631), 1, + anon_sym_GT, + [40742] = 2, + ACTIONS(2038), 1, sym_comment, - ACTIONS(1331), 3, + ACTIONS(2633), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [38582] = 4, + [40751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - ACTIONS(2543), 1, - anon_sym_COLON, - STATE(1258), 1, - sym_formal_parameters, - [38595] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2415), 1, + ACTIONS(702), 1, anon_sym_COMMA, - ACTIONS(2417), 1, - anon_sym_RBRACE, - STATE(1048), 1, - aux_sym_object_repeat1, - [38608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2545), 1, - anon_sym_EQ, - ACTIONS(1069), 2, - anon_sym_in, - anon_sym_of, - [38619] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2547), 1, - anon_sym_EQ, - ACTIONS(1069), 2, - anon_sym_in, - anon_sym_of, - [38630] = 4, + ACTIONS(2635), 1, + anon_sym_RPAREN, + STATE(1041), 1, + aux_sym_array_repeat1, + [40764] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - ACTIONS(2549), 1, + ACTIONS(2637), 1, sym_identifier, - STATE(1104), 1, + STATE(1214), 1, sym_formal_parameters, - [38643] = 4, + [40777] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1624), 1, + ACTIONS(702), 1, anon_sym_COMMA, - ACTIONS(2541), 1, - anon_sym_RBRACE, - STATE(1049), 1, - aux_sym_object_pattern_repeat1, - [38656] = 4, + ACTIONS(1519), 1, + anon_sym_RPAREN, + STATE(1163), 1, + aux_sym_array_repeat1, + [40790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(702), 1, anon_sym_COMMA, - ACTIONS(2347), 1, - anon_sym_RBRACK, - STATE(1094), 1, - aux_sym_array_pattern_repeat1, - [38669] = 2, - ACTIONS(1942), 1, + ACTIONS(1519), 1, + anon_sym_RPAREN, + STATE(1041), 1, + aux_sym_array_repeat1, + [40803] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2016), 1, + anon_sym_COLON, + ACTIONS(2024), 1, + anon_sym_DOT, + ACTIONS(2639), 1, + anon_sym_GT, + [40816] = 2, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2236), 3, + ACTIONS(2351), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [38678] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2249), 1, - sym_identifier, - ACTIONS(2251), 1, - anon_sym_LBRACK, - ACTIONS(2253), 1, - sym_private_property_identifier, - [38691] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2234), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RBRACK, - [38700] = 4, + [40825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_COMMA, - ACTIONS(1455), 1, - anon_sym_RPAREN, - STATE(988), 1, - aux_sym_array_repeat1, - [38713] = 4, + ACTIONS(2641), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [40834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_COMMA, - ACTIONS(1455), 1, - anon_sym_RPAREN, - STATE(1023), 1, - aux_sym_array_repeat1, - [38726] = 4, + ACTIONS(2385), 1, + sym_identifier, + ACTIONS(2643), 1, + anon_sym_RBRACE, + STATE(1199), 1, + sym__import_export_specifier, + [40847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1860), 1, - anon_sym_RPAREN, - ACTIONS(2551), 1, - anon_sym_COMMA, - STATE(1015), 1, - aux_sym_formal_parameters_repeat1, - [38739] = 4, + ACTIONS(2645), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [40856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, + ACTIONS(2647), 1, anon_sym_COMMA, - ACTIONS(2553), 1, + ACTIONS(2649), 1, anon_sym_RBRACE, - STATE(1048), 1, - aux_sym_object_repeat1, - [38752] = 4, + STATE(1168), 1, + aux_sym_export_clause_repeat1, + [40869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1624), 1, - anon_sym_COMMA, - ACTIONS(2555), 1, - anon_sym_RBRACE, - STATE(1049), 1, - aux_sym_object_pattern_repeat1, - [38765] = 4, + ACTIONS(2178), 1, + anon_sym_LPAREN, + ACTIONS(2651), 1, + anon_sym_COLON, + STATE(1347), 1, + sym_formal_parameters, + [40882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1624), 1, + ACTIONS(2399), 1, + anon_sym_EQ, + ACTIONS(2653), 2, anon_sym_COMMA, - ACTIONS(2557), 1, anon_sym_RBRACE, - STATE(1049), 1, - aux_sym_object_pattern_repeat1, - [38778] = 4, + [40893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2415), 1, - anon_sym_COMMA, - ACTIONS(2559), 1, + ACTIONS(2385), 1, + sym_identifier, + ACTIONS(2655), 1, anon_sym_RBRACE, - STATE(1048), 1, - aux_sym_object_repeat1, - [38791] = 4, + STATE(1175), 1, + sym__import_export_specifier, + [40906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(2657), 1, anon_sym_COMMA, - ACTIONS(2299), 1, - anon_sym_RPAREN, - STATE(1081), 1, - aux_sym_formal_parameters_repeat1, - [38804] = 4, + ACTIONS(2659), 1, + anon_sym_RBRACE, + STATE(1061), 1, + aux_sym_named_imports_repeat1, + [40919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2561), 1, + ACTIONS(2489), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(2564), 1, - anon_sym_RBRACE, - STATE(1087), 1, - aux_sym_named_imports_repeat1, - [38817] = 4, + anon_sym_SEMI, + [40928] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, - anon_sym_LBRACE, - ACTIONS(2568), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(228), 1, - sym_statement_block, - [38830] = 4, + ACTIONS(2661), 1, + sym_identifier, + STATE(1319), 1, + sym_formal_parameters, + [40941] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1920), 1, + ACTIONS(2016), 1, anon_sym_COLON, - ACTIONS(1928), 1, + ACTIONS(2024), 1, anon_sym_DOT, - ACTIONS(2570), 1, + ACTIONS(2663), 1, anon_sym_GT, - [38843] = 4, + [40954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, + ACTIONS(2399), 1, + anon_sym_EQ, + ACTIONS(2665), 2, anon_sym_COMMA, - ACTIONS(2572), 1, anon_sym_RPAREN, - STATE(988), 1, - aux_sym_array_repeat1, - [38856] = 2, + [40965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [38865] = 3, + ACTIONS(2667), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [40974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_EQ, - ACTIONS(2574), 2, + ACTIONS(2665), 1, + anon_sym_RPAREN, + ACTIONS(2669), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [38876] = 4, - ACTIONS(3), 1, + STATE(1157), 1, + aux_sym_formal_parameters_repeat1, + [40987] = 2, + ACTIONS(2038), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_COMMA, - ACTIONS(2576), 1, - anon_sym_RBRACK, - STATE(988), 1, - aux_sym_array_repeat1, - [38889] = 4, + ACTIONS(2672), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [40996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_COMMA, - ACTIONS(2578), 1, - anon_sym_RBRACK, - STATE(1098), 1, - aux_sym_array_pattern_repeat1, - [38902] = 4, - ACTIONS(3), 1, + ACTIONS(605), 1, + sym__automatic_semicolon, + ACTIONS(527), 2, + anon_sym_else, + anon_sym_while, + [41007] = 2, + ACTIONS(2038), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_COMMA, - ACTIONS(2580), 1, - anon_sym_RBRACK, - STATE(988), 1, - aux_sym_array_repeat1, - [38915] = 4, - ACTIONS(3), 1, + ACTIONS(2672), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [41016] = 2, + ACTIONS(2038), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_COMMA, - ACTIONS(2582), 1, - anon_sym_RBRACK, - STATE(1098), 1, - aux_sym_array_pattern_repeat1, - [38928] = 4, - ACTIONS(3), 1, + ACTIONS(2672), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [41025] = 2, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - ACTIONS(2584), 1, - sym_identifier, - STATE(1207), 1, - sym_formal_parameters, - [38941] = 4, + ACTIONS(2672), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [41034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2574), 1, - anon_sym_RBRACK, - ACTIONS(2586), 1, + ACTIONS(702), 1, anon_sym_COMMA, - STATE(1098), 1, - aux_sym_array_pattern_repeat1, - [38954] = 2, - ACTIONS(1942), 1, + ACTIONS(2674), 1, + anon_sym_RPAREN, + STATE(1041), 1, + aux_sym_array_repeat1, + [41047] = 2, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2589), 3, + ACTIONS(2334), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [38963] = 4, + [41056] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2016), 1, + anon_sym_COLON, + ACTIONS(2024), 1, + anon_sym_DOT, + ACTIONS(2676), 1, + anon_sym_GT, + [41069] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2678), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [41078] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2678), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [41087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, + ACTIONS(2680), 1, anon_sym_COMMA, - ACTIONS(1438), 1, - anon_sym_RPAREN, - STATE(988), 1, - aux_sym_array_repeat1, - [38976] = 4, + ACTIONS(2683), 1, + anon_sym_RBRACE, + STATE(1168), 1, + aux_sym_export_clause_repeat1, + [41100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_COMMA, - ACTIONS(1438), 1, - anon_sym_RPAREN, - STATE(1090), 1, - aux_sym_array_repeat1, - [38989] = 3, + ACTIONS(2385), 1, + sym_identifier, + ACTIONS(2685), 1, + anon_sym_RBRACE, + STATE(1175), 1, + sym__import_export_specifier, + [41113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1276), 1, + STATE(1269), 1, sym_formal_parameters, - [38999] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2206), 1, - anon_sym_LBRACE, - STATE(236), 1, - sym_class_body, - [39009] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2591), 1, - anon_sym_LBRACE, - STATE(456), 1, - sym_statement_block, - [39019] = 3, + [41123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2591), 1, + ACTIONS(2687), 1, anon_sym_LBRACE, - STATE(426), 1, + STATE(564), 1, sym_statement_block, - [39029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2593), 1, - sym_identifier, - ACTIONS(2595), 1, - sym_jsx_identifier, - [39039] = 3, + [41133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2597), 1, + ACTIONS(2689), 1, sym_identifier, - ACTIONS(2599), 1, + ACTIONS(2691), 1, anon_sym_STAR, - [39049] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2206), 1, - anon_sym_LBRACE, - STATE(542), 1, - sym_class_body, - [39059] = 2, + [41143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [39067] = 3, + ACTIONS(2693), 1, + anon_sym_LPAREN, + STATE(1236), 1, + sym_parenthesized_expression, + [41153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2603), 1, + ACTIONS(2695), 1, sym_identifier, - ACTIONS(2605), 1, + ACTIONS(2697), 1, anon_sym_STAR, - [39077] = 3, + [41163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2699), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41171] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2693), 1, anon_sym_LPAREN, - STATE(1261), 1, - sym_formal_parameters, - [39087] = 3, + STATE(45), 1, + sym_parenthesized_expression, + [41181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - STATE(433), 1, - sym_class_body, - [39097] = 2, + STATE(798), 1, + sym_statement_block, + [41191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [39105] = 2, + ACTIONS(2618), 1, + anon_sym_LBRACE, + STATE(799), 1, + sym_statement_block, + [41201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1882), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [39113] = 3, + ACTIONS(2618), 1, + anon_sym_LBRACE, + STATE(800), 1, + sym_statement_block, + [41211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, - anon_sym_LBRACE, - STATE(56), 1, - sym_class_body, - [39123] = 3, + ACTIONS(2178), 1, + anon_sym_LPAREN, + STATE(1308), 1, + sym_formal_parameters, + [41221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1256), 1, + STATE(1321), 1, sym_formal_parameters, - [39133] = 3, + [41231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, - anon_sym_LBRACE, - STATE(573), 1, - sym_class_body, - [39143] = 3, + ACTIONS(2178), 1, + anon_sym_LPAREN, + STATE(1322), 1, + sym_formal_parameters, + [41241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, - anon_sym_LBRACE, - STATE(572), 1, - sym_statement_block, - [39153] = 3, + ACTIONS(2178), 1, + anon_sym_LPAREN, + STATE(1334), 1, + sym_formal_parameters, + [41251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - STATE(733), 1, + STATE(803), 1, sym_statement_block, - [39163] = 2, + [41261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2517), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [39171] = 3, + ACTIONS(2178), 1, + anon_sym_LPAREN, + STATE(1332), 1, + sym_formal_parameters, + [41271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1216), 1, + STATE(1327), 1, sym_formal_parameters, - [39181] = 3, + [41281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1224), 1, + STATE(1306), 1, sym_formal_parameters, - [39191] = 3, + [41291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2618), 1, + anon_sym_LBRACE, + STATE(808), 1, + sym_statement_block, + [41301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1225), 1, + STATE(1276), 1, sym_formal_parameters, - [39201] = 3, + [41311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - STATE(615), 1, + STATE(809), 1, sym_statement_block, - [39211] = 3, + [41321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2591), 1, + ACTIONS(1553), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [41329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2365), 1, anon_sym_LBRACE, - STATE(488), 1, - sym_statement_block, - [39221] = 3, + STATE(275), 1, + sym_class_body, + [41339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2701), 1, anon_sym_LBRACE, - STATE(521), 1, + STATE(273), 1, sym_statement_block, - [39231] = 3, + [41349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2701), 1, anon_sym_LBRACE, - STATE(523), 1, + STATE(281), 1, sym_statement_block, - [39241] = 2, + [41359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2574), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [39249] = 3, + ACTIONS(2178), 1, + anon_sym_LPAREN, + STATE(1253), 1, + sym_formal_parameters, + [41369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - STATE(50), 1, + STATE(259), 1, sym_statement_block, - [39259] = 3, + [41379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, + ACTIONS(2693), 1, anon_sym_LPAREN, - STATE(25), 1, + STATE(47), 1, sym_parenthesized_expression, - [39269] = 3, + [41389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 1, - anon_sym_LBRACE, - STATE(241), 1, - sym_class_body, - [39279] = 3, + ACTIONS(2703), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, - anon_sym_LBRACE, - STATE(273), 1, - sym_statement_block, - [39289] = 3, + ACTIONS(2705), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1928), 1, - anon_sym_DOT, - ACTIONS(2570), 1, - anon_sym_GT, - [39299] = 3, + ACTIONS(2166), 2, + anon_sym_in, + anon_sym_of, + [41413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1234), 1, + STATE(1179), 1, sym_formal_parameters, - [39309] = 3, + [41423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, + ACTIONS(2278), 1, anon_sym_LBRACE, - STATE(544), 1, + STATE(72), 1, sym_class_body, - [39319] = 3, + [41433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, + ACTIONS(2308), 1, anon_sym_LBRACE, - STATE(241), 1, + STATE(515), 1, sym_class_body, - [39329] = 3, + [41443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, - anon_sym_LBRACE, - STATE(620), 1, - sym_statement_block, - [39339] = 3, + ACTIONS(2024), 1, + anon_sym_DOT, + ACTIONS(2676), 1, + anon_sym_GT, + [41453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, - anon_sym_LBRACE, - STATE(561), 1, - sym_statement_block, - [39349] = 3, + ACTIONS(2178), 1, + anon_sym_LPAREN, + STATE(1257), 1, + sym_formal_parameters, + [41463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, - anon_sym_LBRACE, - STATE(560), 1, - sym_statement_block, - [39359] = 3, + ACTIONS(2016), 1, + anon_sym_COLON, + ACTIONS(2676), 1, + anon_sym_GT, + [41473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, - anon_sym_LBRACE, - STATE(559), 1, - sym_class_body, - [39369] = 3, + ACTIONS(2707), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [41481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1156), 1, - sym_parenthesized_expression, - [39379] = 3, + STATE(1284), 1, + sym_formal_parameters, + [41491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2709), 1, anon_sym_LBRACE, - STATE(526), 1, + STATE(475), 1, sym_statement_block, - [39389] = 3, + [41501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1211), 1, + STATE(1290), 1, sym_formal_parameters, - [39399] = 3, + [41511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2709), 1, anon_sym_LBRACE, - STATE(557), 1, + STATE(472), 1, sym_statement_block, - [39409] = 3, + [41521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2687), 1, anon_sym_LBRACE, - STATE(626), 1, + STATE(75), 1, sym_statement_block, - [39419] = 3, + [41531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, - sym_identifier, - ACTIONS(2244), 1, - sym_private_property_identifier, - [39429] = 3, + ACTIONS(2687), 1, + anon_sym_LBRACE, + STATE(66), 1, + sym_statement_block, + [41541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 1, + anon_sym_LBRACE, + STATE(616), 1, + sym_statement_block, + [41551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2613), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1113), 1, - sym_parenthesized_expression, - [39439] = 2, + STATE(1234), 1, + sym_formal_parameters, + [41561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1447), 2, + ACTIONS(2711), 2, sym__automatic_semicolon, anon_sym_SEMI, - [39447] = 3, + [41569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, - anon_sym_LBRACE, - STATE(478), 1, - sym_class_body, - [39457] = 3, + ACTIONS(2178), 1, + anon_sym_LPAREN, + STATE(1294), 1, + sym_formal_parameters, + [41579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1271), 1, + STATE(1304), 1, sym_formal_parameters, - [39467] = 3, + [41589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2713), 2, anon_sym_LBRACE, - STATE(720), 1, - sym_statement_block, - [39477] = 3, + anon_sym_EQ_GT, + [41597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(1517), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [41605] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2709), 1, anon_sym_LBRACE, - STATE(721), 1, + STATE(477), 1, sym_statement_block, - [39487] = 2, + [41615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 2, + ACTIONS(2715), 1, + sym_identifier, + ACTIONS(2717), 1, + anon_sym_STAR, + [41625] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2431), 1, + anon_sym_from, + STATE(1316), 1, + sym__from_clause, + [41635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2308), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [39495] = 3, + STATE(471), 1, + sym_class_body, + [41645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2359), 1, + sym_identifier, + ACTIONS(2363), 1, + sym_private_property_identifier, + [41655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2618), 1, anon_sym_LBRACE, - STATE(722), 1, + STATE(269), 1, sym_statement_block, - [39505] = 3, + [41665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, - anon_sym_LPAREN, - STATE(40), 1, - sym__for_header, - [39515] = 3, + ACTIONS(2618), 1, + anon_sym_LBRACE, + STATE(806), 1, + sym_statement_block, + [41675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - STATE(305), 1, - sym_switch_body, - [39525] = 2, + STATE(805), 1, + sym_statement_block, + [41685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1211), 2, + ACTIONS(2719), 2, sym__automatic_semicolon, anon_sym_SEMI, - [39533] = 2, + [41693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2621), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [39541] = 2, + ACTIONS(2721), 1, + anon_sym_COMMA, + ACTIONS(2723), 1, + anon_sym_from, + [41703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 2, + ACTIONS(2725), 2, sym__automatic_semicolon, anon_sym_SEMI, - [39549] = 2, + [41711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2431), 1, + anon_sym_from, + STATE(1336), 1, + sym__from_clause, + [41721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 2, + ACTIONS(2727), 2, sym__automatic_semicolon, anon_sym_SEMI, - [39557] = 3, + [41729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2687), 1, anon_sym_LBRACE, - STATE(230), 1, + STATE(68), 1, sym_statement_block, - [39567] = 2, + [41739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 2, + ACTIONS(2729), 2, sym__automatic_semicolon, anon_sym_SEMI, - [39575] = 3, + [41747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2627), 1, - anon_sym_SEMI, - ACTIONS(2629), 1, - sym__automatic_semicolon, - [39585] = 3, + ACTIONS(2731), 1, + anon_sym_LBRACE, + STATE(309), 1, + sym_switch_body, + [41757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2733), 1, anon_sym_LPAREN, - STATE(1236), 1, - sym_formal_parameters, - [39595] = 3, + STATE(37), 1, + sym__for_header, + [41767] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2735), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [41775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2591), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - STATE(429), 1, + STATE(804), 1, sym_statement_block, - [39605] = 3, + [41785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2309), 1, - anon_sym_from, - STATE(1204), 1, - sym__from_clause, - [39615] = 3, + ACTIONS(2016), 1, + anon_sym_COLON, + ACTIONS(2663), 1, + anon_sym_GT, + [41795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 1, + ACTIONS(2385), 1, sym_identifier, - ACTIONS(2253), 1, - sym_private_property_identifier, - [39625] = 3, + STATE(1199), 1, + sym__import_export_specifier, + [41805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2631), 1, + ACTIONS(2024), 1, + anon_sym_DOT, + ACTIONS(2663), 1, + anon_sym_GT, + [41815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2737), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [41823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2693), 1, + anon_sym_LPAREN, + STATE(56), 1, + sym_parenthesized_expression, + [41833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2665), 2, anon_sym_COMMA, - ACTIONS(2633), 1, - anon_sym_from, - [39635] = 3, + anon_sym_RPAREN, + [41841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2739), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [41849] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2709), 1, + anon_sym_LBRACE, + STATE(500), 1, + sym_statement_block, + [41859] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2178), 1, + anon_sym_LPAREN, + STATE(1211), 1, + sym_formal_parameters, + [41869] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1223), 1, + STATE(1209), 1, sym_formal_parameters, - [39645] = 3, + [41879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2591), 1, + ACTIONS(2687), 1, anon_sym_LBRACE, - STATE(477), 1, + STATE(661), 1, sym_statement_block, - [39655] = 3, + [41889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2308), 1, anon_sym_LBRACE, - STATE(525), 1, - sym_statement_block, - [39665] = 3, + STATE(509), 1, + sym_class_body, + [41899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2291), 1, - sym_identifier, - STATE(1259), 1, - sym__import_export_specifier, - [39675] = 2, + ACTIONS(1496), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [41907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2635), 2, + ACTIONS(2701), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [39683] = 3, + STATE(280), 1, + sym_statement_block, + [41917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(1492), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [41925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 1, anon_sym_LBRACE, - STATE(744), 1, + STATE(567), 1, sym_statement_block, - [39693] = 3, + [41935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2741), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [41943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2709), 1, anon_sym_LBRACE, - STATE(725), 1, + STATE(485), 1, sym_statement_block, - [39703] = 3, + [41953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2385), 1, + sym_identifier, + STATE(1175), 1, + sym__import_export_specifier, + [41963] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2618), 1, anon_sym_LBRACE, - STATE(726), 1, + STATE(814), 1, sym_statement_block, - [39713] = 3, + [41973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1151), 1, + STATE(1177), 1, sym_formal_parameters, - [39723] = 3, + [41983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1152), 1, + STATE(1178), 1, sym_formal_parameters, - [39733] = 3, + [41993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(1976), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [42001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1154), 1, + STATE(1184), 1, sym_formal_parameters, - [39743] = 3, + [42011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, - anon_sym_LBRACE, - STATE(727), 1, - sym_statement_block, - [39753] = 3, + ACTIONS(2178), 1, + anon_sym_LPAREN, + STATE(1188), 1, + sym_formal_parameters, + [42021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2278), 1, anon_sym_LBRACE, - STATE(728), 1, - sym_statement_block, - [39763] = 3, + STATE(660), 1, + sym_class_body, + [42031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2653), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [42039] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 1, anon_sym_LBRACE, - STATE(729), 1, + STATE(652), 1, sym_statement_block, - [39773] = 3, + [42049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2178), 1, + anon_sym_LPAREN, + STATE(1190), 1, + sym_formal_parameters, + [42059] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2618), 1, anon_sym_LBRACE, - STATE(732), 1, + STATE(785), 1, sym_statement_block, - [39783] = 3, + [42069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2701), 1, anon_sym_LBRACE, - STATE(719), 1, + STATE(268), 1, sym_statement_block, - [39793] = 3, + [42079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1170), 1, + STATE(1193), 1, sym_formal_parameters, - [39803] = 3, + [42089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2637), 1, - anon_sym_LBRACE, - STATE(235), 1, - sym_statement_block, - [39813] = 2, + ACTIONS(2178), 1, + anon_sym_LPAREN, + STATE(1194), 1, + sym_formal_parameters, + [42099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39821] = 3, + ACTIONS(2278), 1, + anon_sym_LBRACE, + STATE(635), 1, + sym_class_body, + [42109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2291), 1, - sym_identifier, - STATE(1244), 1, - sym__import_export_specifier, - [39831] = 3, + ACTIONS(2365), 1, + anon_sym_LBRACE, + STATE(286), 1, + sym_class_body, + [42119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2591), 1, + ACTIONS(2687), 1, anon_sym_LBRACE, - STATE(473), 1, + STATE(655), 1, sym_statement_block, - [39841] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2639), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [39849] = 2, + [42129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2641), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [39857] = 3, + ACTIONS(2618), 1, + anon_sym_LBRACE, + STATE(787), 1, + sym_statement_block, + [42139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1920), 1, - anon_sym_COLON, - ACTIONS(2570), 1, - anon_sym_GT, - [39867] = 3, + ACTIONS(2278), 1, + anon_sym_LBRACE, + STATE(275), 1, + sym_class_body, + [42149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1239), 1, + STATE(1291), 1, sym_formal_parameters, - [39877] = 3, + [42159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, + ACTIONS(2278), 1, anon_sym_LBRACE, - STATE(637), 1, + STATE(565), 1, sym_class_body, - [39887] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2643), 1, - anon_sym_SEMI, - ACTIONS(2645), 1, - sym__automatic_semicolon, - [39897] = 2, + [42169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2647), 2, + ACTIONS(2743), 2, sym__automatic_semicolon, anon_sym_SEMI, - [39905] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - STATE(1129), 1, - sym_formal_parameters, - [39915] = 2, + [42177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2649), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [39923] = 3, + ACTIONS(2687), 1, + anon_sym_LBRACE, + STATE(657), 1, + sym_statement_block, + [42187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, + ACTIONS(2278), 1, anon_sym_LBRACE, - STATE(466), 1, + STATE(649), 1, sym_class_body, - [39933] = 2, + [42197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [39941] = 3, + ACTIONS(2288), 1, + sym_identifier, + ACTIONS(2292), 1, + sym_private_property_identifier, + [42207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2745), 1, + anon_sym_LBRACE, + STATE(280), 1, + sym_statement_block, + [42217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1205), 1, + STATE(1250), 1, sym_formal_parameters, - [39951] = 3, + [42227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, - anon_sym_LPAREN, - STATE(30), 1, - sym_parenthesized_expression, - [39961] = 3, + ACTIONS(2024), 1, + anon_sym_DOT, + ACTIONS(2639), 1, + anon_sym_GT, + [42237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2309), 1, - anon_sym_from, - STATE(1214), 1, - sym__from_clause, - [39971] = 3, + ACTIONS(2016), 1, + anon_sym_COLON, + ACTIONS(2639), 1, + anon_sym_GT, + [42247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2651), 1, - anon_sym_SEMI, - ACTIONS(2653), 1, + ACTIONS(1267), 2, sym__automatic_semicolon, - [39981] = 3, + anon_sym_SEMI, + [42255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2278), 1, anon_sym_LBRACE, - STATE(59), 1, - sym_statement_block, - [39991] = 3, + STATE(560), 1, + sym_class_body, + [42265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 1, + ACTIONS(2745), 1, anon_sym_LBRACE, - STATE(236), 1, - sym_class_body, - [40001] = 3, + STATE(273), 1, + sym_statement_block, + [42275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2687), 1, anon_sym_LBRACE, - STATE(614), 1, + STATE(78), 1, sym_statement_block, - [40011] = 3, + [42285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2655), 1, - sym_identifier, - ACTIONS(2657), 1, - anon_sym_STAR, - [40021] = 2, + ACTIONS(2687), 1, + anon_sym_LBRACE, + STATE(630), 1, + sym_statement_block, + [42295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [40029] = 3, + ACTIONS(2178), 1, + anon_sym_LPAREN, + STATE(1212), 1, + sym_formal_parameters, + [42305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2745), 1, anon_sym_LBRACE, - STATE(51), 1, + STATE(281), 1, sym_statement_block, - [40039] = 3, + [42315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(2687), 1, anon_sym_LBRACE, - STATE(57), 1, + STATE(624), 1, sym_statement_block, - [40049] = 3, + [42325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, - anon_sym_LBRACE, - STATE(216), 1, - sym_statement_block, - [40059] = 3, + ACTIONS(2178), 1, + anon_sym_LPAREN, + STATE(1213), 1, + sym_formal_parameters, + [42335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2661), 1, - sym_identifier, - ACTIONS(2663), 1, - anon_sym_STAR, - [40069] = 3, + ACTIONS(2178), 1, + anon_sym_LPAREN, + STATE(1255), 1, + sym_formal_parameters, + [42345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 1, + ACTIONS(2747), 1, anon_sym_SEMI, - ACTIONS(2667), 1, + ACTIONS(2749), 1, sym__automatic_semicolon, - [40079] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2611), 1, - anon_sym_LPAREN, - STATE(28), 1, - sym_parenthesized_expression, - [40089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2669), 1, - anon_sym_LBRACE, - STATE(235), 1, - sym_statement_block, - [40099] = 3, + [42355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1144), 1, + STATE(1267), 1, sym_formal_parameters, - [40109] = 3, + [42365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1251), 1, + STATE(1275), 1, sym_formal_parameters, - [40119] = 3, + [42375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, + ACTIONS(2278), 1, anon_sym_LBRACE, - STATE(440), 1, + STATE(74), 1, sym_class_body, - [40129] = 2, + [42385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2671), 2, + ACTIONS(2751), 1, + anon_sym_LPAREN, + STATE(1231), 1, + sym_parenthesized_expression, + [42395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2709), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [40137] = 3, + STATE(540), 1, + sym_statement_block, + [42405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - STATE(1246), 1, - sym_formal_parameters, - [40147] = 3, + ACTIONS(2745), 1, + anon_sym_LBRACE, + STATE(268), 1, + sym_statement_block, + [42415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - STATE(1252), 1, - sym_formal_parameters, - [40157] = 3, + ACTIONS(2709), 1, + anon_sym_LBRACE, + STATE(517), 1, + sym_statement_block, + [42425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2591), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - STATE(442), 1, + STATE(788), 1, sym_statement_block, - [40167] = 3, + [42435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(2687), 1, anon_sym_LBRACE, - STATE(242), 1, + STATE(575), 1, sym_statement_block, - [40177] = 3, + [42445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - STATE(244), 1, + STATE(797), 1, sym_statement_block, - [40187] = 3, + [42455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1142), 1, + STATE(1171), 1, sym_formal_parameters, - [40197] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - anon_sym_COLON, - ACTIONS(2474), 1, - anon_sym_GT, - [40207] = 3, + [42465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1139), 1, + STATE(1318), 1, sym_formal_parameters, - [40217] = 3, + [42475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2753), 1, + sym_identifier, + ACTIONS(2755), 1, + anon_sym_STAR, + [42485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1920), 1, + ACTIONS(2016), 1, anon_sym_COLON, - ACTIONS(2521), 1, + ACTIONS(2631), 1, anon_sym_GT, - [40227] = 3, + [42495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1138), 1, + STATE(1270), 1, sym_formal_parameters, - [40237] = 3, + [42505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1928), 1, + ACTIONS(2024), 1, anon_sym_DOT, - ACTIONS(2521), 1, + ACTIONS(2631), 1, anon_sym_GT, - [40247] = 3, + [42515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - STATE(1210), 1, - sym_formal_parameters, - [40257] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2673), 2, - sym__automatic_semicolon, + ACTIONS(2757), 1, anon_sym_SEMI, - [40265] = 3, + ACTIONS(2759), 1, + sym__automatic_semicolon, + [42525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_LBRACE, - STATE(240), 1, - sym_statement_block, - [40275] = 3, + ACTIONS(2761), 1, + anon_sym_SEMI, + ACTIONS(2763), 1, + sym__automatic_semicolon, + [42535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1928), 1, - anon_sym_DOT, - ACTIONS(2474), 1, - anon_sym_GT, - [40285] = 3, + ACTIONS(2765), 1, + sym_identifier, + ACTIONS(2767), 1, + sym_jsx_identifier, + [42545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2591), 1, + ACTIONS(2687), 1, anon_sym_LBRACE, - STATE(443), 1, + STATE(562), 1, sym_statement_block, - [40295] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - STATE(1127), 1, - sym_formal_parameters, - [40305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - STATE(1165), 1, - sym_formal_parameters, - [40315] = 3, + [42555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2637), 1, + ACTIONS(2709), 1, anon_sym_LBRACE, - STATE(240), 1, + STATE(549), 1, sym_statement_block, - [40325] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2074), 2, - anon_sym_in, - anon_sym_of, - [40333] = 3, + [42565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1126), 1, + STATE(1330), 1, sym_formal_parameters, - [40343] = 3, + [42575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - STATE(54), 1, - sym_class_body, - [40353] = 2, + STATE(796), 1, + sym_statement_block, + [42585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2675), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [40361] = 2, + ACTIONS(2618), 1, + anon_sym_LBRACE, + STATE(795), 1, + sym_statement_block, + [42595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2677), 2, + ACTIONS(2622), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [40369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - STATE(1118), 1, - sym_formal_parameters, - [40379] = 3, + anon_sym_RBRACK, + [42603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - STATE(734), 1, + STATE(298), 1, sym_statement_block, - [40389] = 3, + [42613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, - anon_sym_LBRACE, - STATE(550), 1, - sym_class_body, - [40399] = 2, + ACTIONS(2178), 1, + anon_sym_LPAREN, + STATE(1227), 1, + sym_formal_parameters, + [42623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 2, + ACTIONS(2598), 2, anon_sym_COMMA, anon_sym_RBRACE, - [40407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1656), 1, - anon_sym_LPAREN, - ACTIONS(1872), 1, - anon_sym_EQ_GT, - [40417] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - STATE(1186), 1, - sym_formal_parameters, - [40427] = 3, + [42631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2637), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - STATE(244), 1, + STATE(789), 1, sym_statement_block, - [40437] = 3, + [42641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2637), 1, + ACTIONS(2769), 2, anon_sym_LBRACE, - STATE(242), 1, - sym_statement_block, - [40447] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - anon_sym_COLON, - ACTIONS(2507), 1, - anon_sym_GT, - [40457] = 3, + anon_sym_EQ_GT, + [42649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1119), 1, + STATE(1247), 1, sym_formal_parameters, - [40467] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1928), 1, - anon_sym_DOT, - ACTIONS(2507), 1, - anon_sym_GT, - [40477] = 3, + [42659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2687), 1, anon_sym_LBRACE, - STATE(745), 1, + STATE(594), 1, sym_statement_block, - [40487] = 2, + [42669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [40495] = 3, + ACTIONS(2278), 1, + anon_sym_LBRACE, + STATE(612), 1, + sym_class_body, + [42679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - STATE(730), 1, + STATE(790), 1, sym_statement_block, - [40505] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2679), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [40513] = 3, + [42689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2693), 1, anon_sym_LPAREN, - STATE(1262), 1, - sym_formal_parameters, - [40523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2566), 1, - anon_sym_LBRACE, - STATE(747), 1, - sym_statement_block, - [40533] = 3, + STATE(46), 1, + sym_parenthesized_expression, + [42699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - STATE(748), 1, + STATE(791), 1, sym_statement_block, - [40543] = 3, + [42709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1174), 1, + STATE(1307), 1, sym_formal_parameters, - [40553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2611), 1, - anon_sym_LPAREN, - STATE(33), 1, - sym_parenthesized_expression, - [40563] = 3, + [42719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1656), 1, - anon_sym_LPAREN, - ACTIONS(2681), 1, - anon_sym_EQ_GT, - [40573] = 3, + ACTIONS(2771), 1, + anon_sym_SEMI, + ACTIONS(2773), 1, + sym__automatic_semicolon, + [42729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2693), 1, anon_sym_LPAREN, - STATE(1175), 1, - sym_formal_parameters, - [40583] = 3, + STATE(41), 1, + sym_parenthesized_expression, + [42739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, + ACTIONS(2693), 1, anon_sym_LPAREN, - STATE(37), 1, + STATE(57), 1, sym_parenthesized_expression, - [40593] = 3, + [42749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 1, - anon_sym_LPAREN, - STATE(43), 1, - sym_parenthesized_expression, - [40603] = 3, + ACTIONS(2593), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [42757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1176), 1, + STATE(1239), 1, sym_formal_parameters, - [40613] = 3, + [42767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(1750), 1, anon_sym_LPAREN, - STATE(1180), 1, - sym_formal_parameters, - [40623] = 3, + ACTIONS(1932), 1, + anon_sym_EQ_GT, + [42777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, - anon_sym_LBRACE, - STATE(746), 1, - sym_statement_block, - [40633] = 3, + ACTIONS(1750), 1, + anon_sym_LPAREN, + ACTIONS(2775), 1, + anon_sym_EQ_GT, + [42787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - STATE(1181), 1, - sym_formal_parameters, - [40643] = 3, + ACTIONS(2278), 1, + anon_sym_LBRACE, + STATE(286), 1, + sym_class_body, + [42797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - STATE(1182), 1, - sym_formal_parameters, - [40653] = 3, + ACTIONS(2308), 1, + anon_sym_LBRACE, + STATE(491), 1, + sym_class_body, + [42807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, - anon_sym_LPAREN, - STATE(29), 1, - sym__for_header, - [40663] = 3, + ACTIONS(2777), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [42815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1183), 1, + STATE(1259), 1, sym_formal_parameters, - [40673] = 3, + [42825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - STATE(742), 1, + STATE(807), 1, sym_statement_block, - [40683] = 3, + [42835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2733), 1, anon_sym_LPAREN, - STATE(1279), 1, - sym_formal_parameters, - [40693] = 3, + STATE(39), 1, + sym__for_header, + [42845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, + ACTIONS(2178), 1, anon_sym_LPAREN, - STATE(1184), 1, + STATE(1228), 1, sym_formal_parameters, - [40703] = 3, + [42855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, - anon_sym_LBRACE, - STATE(740), 1, - sym_statement_block, - [40713] = 2, + ACTIONS(1555), 1, + anon_sym_RPAREN, + [42862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1500), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [40721] = 3, + ACTIONS(2542), 1, + anon_sym_as, + [42869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 1, - anon_sym_LPAREN, - STATE(1171), 1, - sym_formal_parameters, - [40731] = 2, + ACTIONS(2779), 1, + anon_sym_RBRACE, + [42876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1502), 1, - anon_sym_RBRACE, - [40738] = 2, - ACTIONS(1942), 1, + ACTIONS(2781), 1, + anon_sym_from, + [42883] = 2, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2683), 1, + ACTIONS(2783), 1, sym_regex_pattern, - [40745] = 2, + [42890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2685), 1, - anon_sym_from, - [40752] = 2, + ACTIONS(2785), 1, + anon_sym_COLON, + [42897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2685), 1, - anon_sym_from, - [40759] = 2, + ACTIONS(2787), 1, + anon_sym_EQ, + [42904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2687), 1, - ts_builtin_sym_end, - [40766] = 2, + ACTIONS(2789), 1, + anon_sym_GT, + [42911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2689), 1, - anon_sym_SLASH2, - [40773] = 2, + ACTIONS(1527), 1, + anon_sym_RPAREN, + [42918] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1750), 1, + anon_sym_LPAREN, + [42925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2545), 1, + ACTIONS(2550), 1, anon_sym_EQ, - [40780] = 2, + [42932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2691), 1, + ACTIONS(2791), 1, sym_identifier, - [40787] = 2, + [42939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2507), 1, + ACTIONS(2793), 1, anon_sym_GT, - [40794] = 2, + [42946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2693), 1, - anon_sym_GT, - [40801] = 2, + ACTIONS(1529), 1, + anon_sym_RBRACK, + [42953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2695), 1, + ACTIONS(2795), 1, sym_identifier, - [40808] = 2, + [42960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2697), 1, + ACTIONS(2797), 1, anon_sym_GT, - [40815] = 2, + [42967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2699), 1, + ACTIONS(2799), 1, anon_sym_GT, - [40822] = 2, + [42974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 1, + ACTIONS(2801), 1, + anon_sym_GT, + [42981] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2631), 1, anon_sym_GT, - [40829] = 2, + [42988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1563), 1, + anon_sym_RPAREN, + [42995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2703), 1, + ACTIONS(2803), 1, sym_identifier, - [40836] = 2, + [43002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2705), 1, + ACTIONS(2805), 1, anon_sym_GT, - [40843] = 2, + [43009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2707), 1, + ACTIONS(2807), 1, anon_sym_GT, - [40850] = 2, + [43016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2709), 1, - anon_sym_EQ, - [40857] = 2, + ACTIONS(2809), 1, + anon_sym_GT, + [43023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1872), 1, - anon_sym_EQ_GT, - [40864] = 2, + ACTIONS(2811), 1, + anon_sym_GT, + [43030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2711), 1, + ACTIONS(2813), 1, anon_sym_GT, - [40871] = 2, + [43037] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1495), 1, - anon_sym_COLON, - [40878] = 2, + ACTIONS(2815), 1, + anon_sym_GT, + [43044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2713), 1, - anon_sym_EQ_GT, - [40885] = 2, + ACTIONS(2817), 1, + anon_sym_GT, + [43051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_RPAREN, - [40892] = 2, + ACTIONS(2819), 1, + anon_sym_RBRACE, + [43058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_RPAREN, - [40899] = 2, + ACTIONS(2821), 1, + sym_identifier, + [43065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2474), 1, - anon_sym_GT, - [40906] = 2, + ACTIONS(1533), 1, + anon_sym_RBRACK, + [43072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - anon_sym_RPAREN, - [40913] = 2, + ACTIONS(2823), 1, + anon_sym_EQ_GT, + [43079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2715), 1, + ACTIONS(2825), 1, anon_sym_EQ_GT, - [40920] = 2, - ACTIONS(1942), 1, + [43086] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, - sym_regex_pattern, - [40927] = 2, + ACTIONS(2827), 1, + anon_sym_EQ_GT, + [43093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2719), 1, - anon_sym_RBRACE, - [40934] = 2, + ACTIONS(2829), 1, + anon_sym_EQ_GT, + [43100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2547), 1, - anon_sym_EQ, - [40941] = 2, + ACTIONS(1531), 1, + anon_sym_RBRACE, + [43107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1508), 1, - anon_sym_RBRACK, - [40948] = 2, + ACTIONS(2831), 1, + sym_identifier, + [43114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2721), 1, - anon_sym_function, - [40955] = 2, + ACTIONS(1542), 1, + anon_sym_RPAREN, + [43121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_GT, - [40962] = 2, + ACTIONS(1546), 1, + anon_sym_RBRACK, + [43128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2521), 1, + ACTIONS(2639), 1, anon_sym_GT, - [40969] = 2, + [43135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1521), 1, - anon_sym_RPAREN, - [40976] = 2, + ACTIONS(2833), 1, + sym_identifier, + [43142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2725), 1, - anon_sym_GT, - [40983] = 2, + ACTIONS(2835), 1, + anon_sym_from, + [43149] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2727), 1, - anon_sym_GT, - [40990] = 2, + ACTIONS(1573), 1, + anon_sym_RBRACE, + [43156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, - anon_sym_GT, - [40997] = 2, + ACTIONS(2837), 1, + anon_sym_target, + [43163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2731), 1, - anon_sym_GT, - [41004] = 2, + ACTIONS(2839), 1, + anon_sym_from, + [43170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2733), 1, - anon_sym_GT, - [41011] = 2, + ACTIONS(2841), 1, + anon_sym_EQ, + [43177] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1527), 1, - anon_sym_RPAREN, - [41018] = 2, + ACTIONS(2843), 1, + sym_identifier, + [43184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2845), 1, anon_sym_GT, - [41025] = 2, + [43191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2737), 1, - sym_identifier, - [41032] = 2, + ACTIONS(2847), 1, + anon_sym_EQ_GT, + [43198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1656), 1, - anon_sym_LPAREN, - [41039] = 2, + ACTIONS(2775), 1, + anon_sym_EQ_GT, + [43205] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1932), 1, + anon_sym_EQ_GT, + [43212] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2739), 1, + ACTIONS(2849), 1, sym_identifier, - [41046] = 2, + [43219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2741), 1, - anon_sym_from, - [41053] = 2, + ACTIONS(1557), 1, + anon_sym_RPAREN, + [43226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 1, - anon_sym_RBRACK, - [41060] = 2, + ACTIONS(2851), 1, + sym_identifier, + [43233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 1, - anon_sym_RPAREN, - [41067] = 2, + ACTIONS(1565), 1, + anon_sym_RBRACE, + [43240] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 1, + ACTIONS(2853), 1, anon_sym_GT, - [41074] = 2, + [43247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, - anon_sym_EQ_GT, - [41081] = 2, + ACTIONS(2855), 1, + anon_sym_from, + [43254] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2681), 1, - anon_sym_EQ_GT, - [41088] = 2, + ACTIONS(2857), 1, + anon_sym_from, + [43261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2749), 1, - anon_sym_EQ_GT, - [41095] = 2, + ACTIONS(2859), 1, + anon_sym_COLON, + [43268] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2751), 1, - anon_sym_EQ_GT, - [41102] = 2, + ACTIONS(2861), 1, + anon_sym_GT, + [43275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1523), 1, - anon_sym_RPAREN, - [41109] = 2, + ACTIONS(2663), 1, + anon_sym_GT, + [43282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2753), 1, - anon_sym_SLASH2, - [41116] = 2, + ACTIONS(2863), 1, + anon_sym_while, + [43289] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, - anon_sym_COLON, - [41123] = 2, + ACTIONS(1525), 1, + anon_sym_RPAREN, + [43296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 1, - sym_identifier, - [41130] = 2, + ACTIONS(2865), 1, + anon_sym_GT, + [43303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(2867), 1, anon_sym_GT, - [41137] = 2, + [43310] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2761), 1, - anon_sym_EQ_GT, - [41144] = 2, + ACTIONS(2869), 1, + anon_sym_GT, + [43317] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 1, + ACTIONS(2871), 1, anon_sym_GT, - [41151] = 2, + [43324] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2765), 1, - anon_sym_EQ_GT, - [41158] = 2, + ACTIONS(2873), 1, + anon_sym_GT, + [43331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2499), 1, - anon_sym_EQ, - [41165] = 2, + ACTIONS(2723), 1, + anon_sym_from, + [43338] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, + ACTIONS(2875), 1, anon_sym_GT, - [41172] = 2, + [43345] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2769), 1, - anon_sym_from, - [41179] = 2, + ACTIONS(2877), 1, + anon_sym_GT, + [43352] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 1, - anon_sym_GT, - [41186] = 2, + ACTIONS(2879), 1, + anon_sym_from, + [43359] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 1, - sym_identifier, - [41193] = 2, + ACTIONS(2881), 1, + anon_sym_GT, + [43366] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 1, + ACTIONS(2883), 1, anon_sym_GT, - [41200] = 2, + [43373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 1, - anon_sym_EQ_GT, - [41207] = 2, + ACTIONS(2885), 1, + anon_sym_RPAREN, + [43380] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 1, - anon_sym_EQ_GT, - [41214] = 2, + ACTIONS(2887), 1, + anon_sym_GT, + [43387] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(2889), 1, anon_sym_EQ, - [41221] = 2, + [43394] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 1, - anon_sym_RBRACE, - [41228] = 2, + ACTIONS(2891), 1, + anon_sym_target, + [43401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 1, + ACTIONS(2893), 1, anon_sym_EQ_GT, - [41235] = 2, + [43408] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 1, - anon_sym_target, - [41242] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2789), 1, - anon_sym_from, - [41249] = 2, + ACTIONS(2895), 1, + anon_sym_EQ_GT, + [43415] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, - anon_sym_as, - [41256] = 2, + ACTIONS(2897), 1, + anon_sym_function, + [43422] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1504), 1, - anon_sym_RPAREN, - [41263] = 2, + ACTIONS(2899), 1, + sym_identifier, + [43429] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 1, - anon_sym_RBRACK, - [41270] = 2, + ACTIONS(2901), 1, + anon_sym_EQ_GT, + [43436] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2633), 1, - anon_sym_from, - [41277] = 2, + ACTIONS(2903), 1, + anon_sym_EQ_GT, + [43443] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 1, - sym_identifier, - [41284] = 2, + ACTIONS(2905), 1, + anon_sym_EQ_GT, + [43450] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2793), 1, - sym_identifier, - [41291] = 2, + ACTIONS(2907), 1, + anon_sym_GT, + [43457] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 1, - anon_sym_RBRACE, - [41298] = 2, + ACTIONS(2610), 1, + anon_sym_EQ, + [43464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1517), 1, + ACTIONS(1535), 1, anon_sym_RPAREN, - [41305] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2795), 1, - anon_sym_GT, - [41312] = 2, + [43471] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 1, - anon_sym_GT, - [41319] = 2, + ACTIONS(2909), 1, + ts_builtin_sym_end, + [43478] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 1, - anon_sym_from, - [41326] = 2, + ACTIONS(2911), 1, + anon_sym_EQ_GT, + [43485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 1, - anon_sym_RBRACK, - [41333] = 2, + ACTIONS(2913), 1, + anon_sym_EQ_GT, + [43492] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(2915), 1, anon_sym_GT, - [41340] = 2, + [43499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_GT, - [41347] = 2, + ACTIONS(1548), 1, + anon_sym_RBRACK, + [43506] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 1, - anon_sym_GT, - [41354] = 2, - ACTIONS(3), 1, + ACTIONS(2917), 1, + anon_sym_EQ_GT, + [43513] = 2, + ACTIONS(2038), 1, sym_comment, - ACTIONS(2805), 1, - anon_sym_target, - [41361] = 2, + ACTIONS(2919), 1, + sym_regex_pattern, + [43520] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2807), 1, - anon_sym_from, - [41368] = 2, + ACTIONS(2616), 1, + anon_sym_EQ, + [43527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2809), 1, + ACTIONS(2676), 1, anon_sym_GT, - [41375] = 2, + [43534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2811), 1, - anon_sym_COLON, - [41382] = 2, + ACTIONS(2921), 1, + anon_sym_SLASH2, + [43541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2813), 1, - anon_sym_from, - [41389] = 2, + ACTIONS(2923), 1, + anon_sym_SLASH2, + [43548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 1, + ACTIONS(2925), 1, anon_sym_GT, - [41396] = 2, + [43555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, - anon_sym_GT, - [41403] = 2, + ACTIONS(2927), 1, + anon_sym_from, + [43562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2819), 1, - anon_sym_while, - [41410] = 2, + ACTIONS(2929), 1, + anon_sym_EQ_GT, + [43569] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 1, - sym_identifier, - [41417] = 2, + ACTIONS(2927), 1, + anon_sym_from, + [43576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1506), 1, - anon_sym_RBRACE, - [41424] = 2, + ACTIONS(1571), 1, + anon_sym_COLON, + [43583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 1, - anon_sym_GT, - [41431] = 2, + ACTIONS(1567), 1, + anon_sym_RPAREN, + [43590] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 1, + ACTIONS(2931), 1, sym_identifier, - [41438] = 2, + [43597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, + ACTIONS(2933), 1, sym_identifier, - [41445] = 2, + [43604] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 1, + ACTIONS(2935), 1, anon_sym_function, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(211)] = 0, - [SMALL_STATE(212)] = 87, - [SMALL_STATE(213)] = 158, - [SMALL_STATE(214)] = 245, - [SMALL_STATE(215)] = 316, - [SMALL_STATE(216)] = 404, - [SMALL_STATE(217)] = 482, - [SMALL_STATE(218)] = 568, - [SMALL_STATE(219)] = 654, - [SMALL_STATE(220)] = 742, - [SMALL_STATE(221)] = 832, - [SMALL_STATE(222)] = 920, - [SMALL_STATE(223)] = 1004, - [SMALL_STATE(224)] = 1088, - [SMALL_STATE(225)] = 1172, - [SMALL_STATE(226)] = 1244, - [SMALL_STATE(227)] = 1332, - [SMALL_STATE(228)] = 1399, - [SMALL_STATE(229)] = 1466, - [SMALL_STATE(230)] = 1553, - [SMALL_STATE(231)] = 1620, - [SMALL_STATE(232)] = 1687, - [SMALL_STATE(233)] = 1754, - [SMALL_STATE(234)] = 1825, - [SMALL_STATE(235)] = 1892, - [SMALL_STATE(236)] = 1961, - [SMALL_STATE(237)] = 2030, - [SMALL_STATE(238)] = 2099, - [SMALL_STATE(239)] = 2168, - [SMALL_STATE(240)] = 2235, - [SMALL_STATE(241)] = 2304, - [SMALL_STATE(242)] = 2373, - [SMALL_STATE(243)] = 2442, - [SMALL_STATE(244)] = 2511, - [SMALL_STATE(245)] = 2580, - [SMALL_STATE(246)] = 2647, - [SMALL_STATE(247)] = 2716, - [SMALL_STATE(248)] = 2782, - [SMALL_STATE(249)] = 2848, - [SMALL_STATE(250)] = 2914, - [SMALL_STATE(251)] = 2980, - [SMALL_STATE(252)] = 3046, - [SMALL_STATE(253)] = 3112, - [SMALL_STATE(254)] = 3178, - [SMALL_STATE(255)] = 3244, - [SMALL_STATE(256)] = 3310, - [SMALL_STATE(257)] = 3376, - [SMALL_STATE(258)] = 3442, - [SMALL_STATE(259)] = 3508, - [SMALL_STATE(260)] = 3574, - [SMALL_STATE(261)] = 3640, - [SMALL_STATE(262)] = 3706, - [SMALL_STATE(263)] = 3772, - [SMALL_STATE(264)] = 3838, - [SMALL_STATE(265)] = 3904, - [SMALL_STATE(266)] = 3970, - [SMALL_STATE(267)] = 4036, - [SMALL_STATE(268)] = 4102, - [SMALL_STATE(269)] = 4168, - [SMALL_STATE(270)] = 4234, - [SMALL_STATE(271)] = 4300, - [SMALL_STATE(272)] = 4366, - [SMALL_STATE(273)] = 4432, - [SMALL_STATE(274)] = 4498, - [SMALL_STATE(275)] = 4564, - [SMALL_STATE(276)] = 4630, - [SMALL_STATE(277)] = 4696, - [SMALL_STATE(278)] = 4762, - [SMALL_STATE(279)] = 4828, - [SMALL_STATE(280)] = 4894, - [SMALL_STATE(281)] = 4960, - [SMALL_STATE(282)] = 5026, - [SMALL_STATE(283)] = 5092, - [SMALL_STATE(284)] = 5158, - [SMALL_STATE(285)] = 5224, - [SMALL_STATE(286)] = 5290, - [SMALL_STATE(287)] = 5356, - [SMALL_STATE(288)] = 5422, - [SMALL_STATE(289)] = 5488, - [SMALL_STATE(290)] = 5554, - [SMALL_STATE(291)] = 5620, - [SMALL_STATE(292)] = 5686, - [SMALL_STATE(293)] = 5752, - [SMALL_STATE(294)] = 5818, - [SMALL_STATE(295)] = 5884, - [SMALL_STATE(296)] = 5950, - [SMALL_STATE(297)] = 6016, - [SMALL_STATE(298)] = 6082, - [SMALL_STATE(299)] = 6148, - [SMALL_STATE(300)] = 6214, - [SMALL_STATE(301)] = 6280, - [SMALL_STATE(302)] = 6346, - [SMALL_STATE(303)] = 6412, - [SMALL_STATE(304)] = 6478, - [SMALL_STATE(305)] = 6544, - [SMALL_STATE(306)] = 6610, - [SMALL_STATE(307)] = 6676, - [SMALL_STATE(308)] = 6742, - [SMALL_STATE(309)] = 6808, - [SMALL_STATE(310)] = 6874, - [SMALL_STATE(311)] = 6940, - [SMALL_STATE(312)] = 7006, - [SMALL_STATE(313)] = 7072, - [SMALL_STATE(314)] = 7138, - [SMALL_STATE(315)] = 7204, - [SMALL_STATE(316)] = 7270, - [SMALL_STATE(317)] = 7336, - [SMALL_STATE(318)] = 7402, - [SMALL_STATE(319)] = 7468, - [SMALL_STATE(320)] = 7534, - [SMALL_STATE(321)] = 7600, - [SMALL_STATE(322)] = 7666, - [SMALL_STATE(323)] = 7732, - [SMALL_STATE(324)] = 7798, - [SMALL_STATE(325)] = 7864, - [SMALL_STATE(326)] = 7930, - [SMALL_STATE(327)] = 7996, - [SMALL_STATE(328)] = 8062, - [SMALL_STATE(329)] = 8128, - [SMALL_STATE(330)] = 8194, - [SMALL_STATE(331)] = 8260, - [SMALL_STATE(332)] = 8326, - [SMALL_STATE(333)] = 8392, - [SMALL_STATE(334)] = 8458, - [SMALL_STATE(335)] = 8524, - [SMALL_STATE(336)] = 8590, - [SMALL_STATE(337)] = 8656, - [SMALL_STATE(338)] = 8722, - [SMALL_STATE(339)] = 8788, - [SMALL_STATE(340)] = 8869, - [SMALL_STATE(341)] = 8950, - [SMALL_STATE(342)] = 9031, - [SMALL_STATE(343)] = 9095, - [SMALL_STATE(344)] = 9159, - [SMALL_STATE(345)] = 9223, - [SMALL_STATE(346)] = 9287, - [SMALL_STATE(347)] = 9351, - [SMALL_STATE(348)] = 9420, - [SMALL_STATE(349)] = 9487, - [SMALL_STATE(350)] = 9556, - [SMALL_STATE(351)] = 9625, - [SMALL_STATE(352)] = 9694, - [SMALL_STATE(353)] = 9762, - [SMALL_STATE(354)] = 9824, - [SMALL_STATE(355)] = 9894, - [SMALL_STATE(356)] = 9964, - [SMALL_STATE(357)] = 10034, - [SMALL_STATE(358)] = 10096, - [SMALL_STATE(359)] = 10158, - [SMALL_STATE(360)] = 10228, - [SMALL_STATE(361)] = 10290, - [SMALL_STATE(362)] = 10356, - [SMALL_STATE(363)] = 10424, - [SMALL_STATE(364)] = 10494, - [SMALL_STATE(365)] = 10564, - [SMALL_STATE(366)] = 10632, - [SMALL_STATE(367)] = 10700, - [SMALL_STATE(368)] = 10762, - [SMALL_STATE(369)] = 10834, - [SMALL_STATE(370)] = 10906, - [SMALL_STATE(371)] = 10967, - [SMALL_STATE(372)] = 11028, - [SMALL_STATE(373)] = 11093, - [SMALL_STATE(374)] = 11162, - [SMALL_STATE(375)] = 11223, - [SMALL_STATE(376)] = 11284, - [SMALL_STATE(377)] = 11349, - [SMALL_STATE(378)] = 11415, - [SMALL_STATE(379)] = 11481, - [SMALL_STATE(380)] = 11551, - [SMALL_STATE(381)] = 11621, - [SMALL_STATE(382)] = 11689, - [SMALL_STATE(383)] = 11757, - [SMALL_STATE(384)] = 11816, - [SMALL_STATE(385)] = 11875, - [SMALL_STATE(386)] = 11934, - [SMALL_STATE(387)] = 12003, - [SMALL_STATE(388)] = 12072, - [SMALL_STATE(389)] = 12138, - [SMALL_STATE(390)] = 12206, - [SMALL_STATE(391)] = 12267, - [SMALL_STATE(392)] = 12320, - [SMALL_STATE(393)] = 12383, - [SMALL_STATE(394)] = 12446, - [SMALL_STATE(395)] = 12509, - [SMALL_STATE(396)] = 12561, - [SMALL_STATE(397)] = 12647, - [SMALL_STATE(398)] = 12731, - [SMALL_STATE(399)] = 12817, - [SMALL_STATE(400)] = 12875, - [SMALL_STATE(401)] = 12927, - [SMALL_STATE(402)] = 12995, - [SMALL_STATE(403)] = 13075, - [SMALL_STATE(404)] = 13161, - [SMALL_STATE(405)] = 13247, - [SMALL_STATE(406)] = 13333, - [SMALL_STATE(407)] = 13419, - [SMALL_STATE(408)] = 13495, - [SMALL_STATE(409)] = 13545, - [SMALL_STATE(410)] = 13595, - [SMALL_STATE(411)] = 13681, - [SMALL_STATE(412)] = 13751, - [SMALL_STATE(413)] = 13837, - [SMALL_STATE(414)] = 13911, - [SMALL_STATE(415)] = 13997, - [SMALL_STATE(416)] = 14049, - [SMALL_STATE(417)] = 14137, - [SMALL_STATE(418)] = 14201, - [SMALL_STATE(419)] = 14251, - [SMALL_STATE(420)] = 14337, - [SMALL_STATE(421)] = 14423, - [SMALL_STATE(422)] = 14509, - [SMALL_STATE(423)] = 14595, - [SMALL_STATE(424)] = 14645, - [SMALL_STATE(425)] = 14730, - [SMALL_STATE(426)] = 14777, - [SMALL_STATE(427)] = 14824, - [SMALL_STATE(428)] = 14871, - [SMALL_STATE(429)] = 14918, - [SMALL_STATE(430)] = 14965, - [SMALL_STATE(431)] = 15012, - [SMALL_STATE(432)] = 15097, - [SMALL_STATE(433)] = 15182, - [SMALL_STATE(434)] = 15229, - [SMALL_STATE(435)] = 15292, - [SMALL_STATE(436)] = 15339, - [SMALL_STATE(437)] = 15424, - [SMALL_STATE(438)] = 15471, - [SMALL_STATE(439)] = 15518, - [SMALL_STATE(440)] = 15565, - [SMALL_STATE(441)] = 15612, - [SMALL_STATE(442)] = 15685, - [SMALL_STATE(443)] = 15732, - [SMALL_STATE(444)] = 15779, - [SMALL_STATE(445)] = 15848, - [SMALL_STATE(446)] = 15895, - [SMALL_STATE(447)] = 15980, - [SMALL_STATE(448)] = 16055, - [SMALL_STATE(449)] = 16134, - [SMALL_STATE(450)] = 16201, - [SMALL_STATE(451)] = 16262, - [SMALL_STATE(452)] = 16345, - [SMALL_STATE(453)] = 16392, - [SMALL_STATE(454)] = 16439, - [SMALL_STATE(455)] = 16486, - [SMALL_STATE(456)] = 16571, - [SMALL_STATE(457)] = 16618, - [SMALL_STATE(458)] = 16665, - [SMALL_STATE(459)] = 16750, - [SMALL_STATE(460)] = 16797, - [SMALL_STATE(461)] = 16882, - [SMALL_STATE(462)] = 16929, - [SMALL_STATE(463)] = 16976, - [SMALL_STATE(464)] = 17023, - [SMALL_STATE(465)] = 17070, - [SMALL_STATE(466)] = 17155, - [SMALL_STATE(467)] = 17202, - [SMALL_STATE(468)] = 17251, - [SMALL_STATE(469)] = 17298, - [SMALL_STATE(470)] = 17347, - [SMALL_STATE(471)] = 17394, - [SMALL_STATE(472)] = 17441, - [SMALL_STATE(473)] = 17526, - [SMALL_STATE(474)] = 17573, - [SMALL_STATE(475)] = 17620, - [SMALL_STATE(476)] = 17705, - [SMALL_STATE(477)] = 17752, - [SMALL_STATE(478)] = 17799, - [SMALL_STATE(479)] = 17846, - [SMALL_STATE(480)] = 17893, - [SMALL_STATE(481)] = 17940, - [SMALL_STATE(482)] = 17987, - [SMALL_STATE(483)] = 18034, - [SMALL_STATE(484)] = 18081, - [SMALL_STATE(485)] = 18128, - [SMALL_STATE(486)] = 18217, - [SMALL_STATE(487)] = 18264, - [SMALL_STATE(488)] = 18311, - [SMALL_STATE(489)] = 18358, - [SMALL_STATE(490)] = 18419, - [SMALL_STATE(491)] = 18480, - [SMALL_STATE(492)] = 18527, - [SMALL_STATE(493)] = 18574, - [SMALL_STATE(494)] = 18623, - [SMALL_STATE(495)] = 18712, - [SMALL_STATE(496)] = 18771, - [SMALL_STATE(497)] = 18818, - [SMALL_STATE(498)] = 18865, - [SMALL_STATE(499)] = 18918, - [SMALL_STATE(500)] = 19007, - [SMALL_STATE(501)] = 19054, - [SMALL_STATE(502)] = 19101, - [SMALL_STATE(503)] = 19148, - [SMALL_STATE(504)] = 19233, - [SMALL_STATE(505)] = 19280, - [SMALL_STATE(506)] = 19365, - [SMALL_STATE(507)] = 19418, - [SMALL_STATE(508)] = 19465, - [SMALL_STATE(509)] = 19550, - [SMALL_STATE(510)] = 19599, - [SMALL_STATE(511)] = 19646, - [SMALL_STATE(512)] = 19693, - [SMALL_STATE(513)] = 19740, - [SMALL_STATE(514)] = 19825, - [SMALL_STATE(515)] = 19872, - [SMALL_STATE(516)] = 19922, - [SMALL_STATE(517)] = 20006, - [SMALL_STATE(518)] = 20058, - [SMALL_STATE(519)] = 20110, - [SMALL_STATE(520)] = 20196, - [SMALL_STATE(521)] = 20280, - [SMALL_STATE(522)] = 20330, - [SMALL_STATE(523)] = 20386, - [SMALL_STATE(524)] = 20436, - [SMALL_STATE(525)] = 20524, - [SMALL_STATE(526)] = 20574, - [SMALL_STATE(527)] = 20624, - [SMALL_STATE(528)] = 20672, - [SMALL_STATE(529)] = 20722, - [SMALL_STATE(530)] = 20774, - [SMALL_STATE(531)] = 20822, - [SMALL_STATE(532)] = 20872, - [SMALL_STATE(533)] = 20958, - [SMALL_STATE(534)] = 21044, - [SMALL_STATE(535)] = 21092, - [SMALL_STATE(536)] = 21140, - [SMALL_STATE(537)] = 21228, - [SMALL_STATE(538)] = 21316, - [SMALL_STATE(539)] = 21404, - [SMALL_STATE(540)] = 21456, - [SMALL_STATE(541)] = 21544, - [SMALL_STATE(542)] = 21630, - [SMALL_STATE(543)] = 21680, - [SMALL_STATE(544)] = 21728, - [SMALL_STATE(545)] = 21778, - [SMALL_STATE(546)] = 21826, - [SMALL_STATE(547)] = 21911, - [SMALL_STATE(548)] = 21956, - [SMALL_STATE(549)] = 22041, - [SMALL_STATE(550)] = 22086, - [SMALL_STATE(551)] = 22131, - [SMALL_STATE(552)] = 22176, - [SMALL_STATE(553)] = 22261, - [SMALL_STATE(554)] = 22306, - [SMALL_STATE(555)] = 22351, - [SMALL_STATE(556)] = 22396, - [SMALL_STATE(557)] = 22481, - [SMALL_STATE(558)] = 22526, - [SMALL_STATE(559)] = 22571, - [SMALL_STATE(560)] = 22616, - [SMALL_STATE(561)] = 22661, - [SMALL_STATE(562)] = 22706, - [SMALL_STATE(563)] = 22789, - [SMALL_STATE(564)] = 22872, - [SMALL_STATE(565)] = 22917, - [SMALL_STATE(566)] = 23002, - [SMALL_STATE(567)] = 23051, - [SMALL_STATE(568)] = 23096, - [SMALL_STATE(569)] = 23179, - [SMALL_STATE(570)] = 23224, - [SMALL_STATE(571)] = 23269, - [SMALL_STATE(572)] = 23314, - [SMALL_STATE(573)] = 23359, - [SMALL_STATE(574)] = 23404, - [SMALL_STATE(575)] = 23455, - [SMALL_STATE(576)] = 23500, - [SMALL_STATE(577)] = 23585, - [SMALL_STATE(578)] = 23668, - [SMALL_STATE(579)] = 23753, - [SMALL_STATE(580)] = 23798, - [SMALL_STATE(581)] = 23881, - [SMALL_STATE(582)] = 23964, - [SMALL_STATE(583)] = 24025, - [SMALL_STATE(584)] = 24070, - [SMALL_STATE(585)] = 24141, - [SMALL_STATE(586)] = 24208, - [SMALL_STATE(587)] = 24281, - [SMALL_STATE(588)] = 24326, - [SMALL_STATE(589)] = 24403, - [SMALL_STATE(590)] = 24488, - [SMALL_STATE(591)] = 24553, - [SMALL_STATE(592)] = 24598, - [SMALL_STATE(593)] = 24643, - [SMALL_STATE(594)] = 24724, - [SMALL_STATE(595)] = 24807, - [SMALL_STATE(596)] = 24890, - [SMALL_STATE(597)] = 24973, - [SMALL_STATE(598)] = 25018, - [SMALL_STATE(599)] = 25101, - [SMALL_STATE(600)] = 25186, - [SMALL_STATE(601)] = 25269, - [SMALL_STATE(602)] = 25314, - [SMALL_STATE(603)] = 25397, - [SMALL_STATE(604)] = 25442, - [SMALL_STATE(605)] = 25525, - [SMALL_STATE(606)] = 25570, - [SMALL_STATE(607)] = 25653, - [SMALL_STATE(608)] = 25698, - [SMALL_STATE(609)] = 25743, - [SMALL_STATE(610)] = 25792, - [SMALL_STATE(611)] = 25837, - [SMALL_STATE(612)] = 25882, - [SMALL_STATE(613)] = 25967, - [SMALL_STATE(614)] = 26052, - [SMALL_STATE(615)] = 26097, - [SMALL_STATE(616)] = 26142, - [SMALL_STATE(617)] = 26225, - [SMALL_STATE(618)] = 26270, - [SMALL_STATE(619)] = 26315, - [SMALL_STATE(620)] = 26360, - [SMALL_STATE(621)] = 26405, - [SMALL_STATE(622)] = 26450, - [SMALL_STATE(623)] = 26495, - [SMALL_STATE(624)] = 26540, - [SMALL_STATE(625)] = 26625, - [SMALL_STATE(626)] = 26708, - [SMALL_STATE(627)] = 26753, - [SMALL_STATE(628)] = 26838, - [SMALL_STATE(629)] = 26883, - [SMALL_STATE(630)] = 26928, - [SMALL_STATE(631)] = 26973, - [SMALL_STATE(632)] = 27056, - [SMALL_STATE(633)] = 27101, - [SMALL_STATE(634)] = 27186, - [SMALL_STATE(635)] = 27271, - [SMALL_STATE(636)] = 27316, - [SMALL_STATE(637)] = 27401, - [SMALL_STATE(638)] = 27446, - [SMALL_STATE(639)] = 27491, - [SMALL_STATE(640)] = 27536, - [SMALL_STATE(641)] = 27621, - [SMALL_STATE(642)] = 27671, - [SMALL_STATE(643)] = 27753, - [SMALL_STATE(644)] = 27803, - [SMALL_STATE(645)] = 27885, - [SMALL_STATE(646)] = 27935, - [SMALL_STATE(647)] = 28017, - [SMALL_STATE(648)] = 28099, - [SMALL_STATE(649)] = 28181, - [SMALL_STATE(650)] = 28263, - [SMALL_STATE(651)] = 28312, - [SMALL_STATE(652)] = 28361, - [SMALL_STATE(653)] = 28410, - [SMALL_STATE(654)] = 28489, - [SMALL_STATE(655)] = 28538, - [SMALL_STATE(656)] = 28617, - [SMALL_STATE(657)] = 28698, - [SMALL_STATE(658)] = 28779, - [SMALL_STATE(659)] = 28860, - [SMALL_STATE(660)] = 28941, - [SMALL_STATE(661)] = 29022, - [SMALL_STATE(662)] = 29103, - [SMALL_STATE(663)] = 29176, - [SMALL_STATE(664)] = 29231, - [SMALL_STATE(665)] = 29286, - [SMALL_STATE(666)] = 29336, - [SMALL_STATE(667)] = 29396, - [SMALL_STATE(668)] = 29452, - [SMALL_STATE(669)] = 29512, - [SMALL_STATE(670)] = 29566, - [SMALL_STATE(671)] = 29622, - [SMALL_STATE(672)] = 29676, - [SMALL_STATE(673)] = 29736, - [SMALL_STATE(674)] = 29796, - [SMALL_STATE(675)] = 29852, - [SMALL_STATE(676)] = 29908, - [SMALL_STATE(677)] = 29962, - [SMALL_STATE(678)] = 30016, - [SMALL_STATE(679)] = 30076, - [SMALL_STATE(680)] = 30136, - [SMALL_STATE(681)] = 30192, - [SMALL_STATE(682)] = 30246, - [SMALL_STATE(683)] = 30306, - [SMALL_STATE(684)] = 30366, - [SMALL_STATE(685)] = 30420, - [SMALL_STATE(686)] = 30476, - [SMALL_STATE(687)] = 30525, - [SMALL_STATE(688)] = 30574, - [SMALL_STATE(689)] = 30623, - [SMALL_STATE(690)] = 30672, - [SMALL_STATE(691)] = 30721, - [SMALL_STATE(692)] = 30770, - [SMALL_STATE(693)] = 30816, - [SMALL_STATE(694)] = 30864, - [SMALL_STATE(695)] = 30909, - [SMALL_STATE(696)] = 30954, - [SMALL_STATE(697)] = 30997, - [SMALL_STATE(698)] = 31038, - [SMALL_STATE(699)] = 31081, - [SMALL_STATE(700)] = 31124, - [SMALL_STATE(701)] = 31165, - [SMALL_STATE(702)] = 31208, - [SMALL_STATE(703)] = 31249, - [SMALL_STATE(704)] = 31304, - [SMALL_STATE(705)] = 31354, - [SMALL_STATE(706)] = 31398, - [SMALL_STATE(707)] = 31442, - [SMALL_STATE(708)] = 31492, - [SMALL_STATE(709)] = 31528, - [SMALL_STATE(710)] = 31564, - [SMALL_STATE(711)] = 31600, - [SMALL_STATE(712)] = 31636, - [SMALL_STATE(713)] = 31672, - [SMALL_STATE(714)] = 31710, - [SMALL_STATE(715)] = 31746, - [SMALL_STATE(716)] = 31791, - [SMALL_STATE(717)] = 31822, - [SMALL_STATE(718)] = 31861, - [SMALL_STATE(719)] = 31901, - [SMALL_STATE(720)] = 31925, - [SMALL_STATE(721)] = 31949, - [SMALL_STATE(722)] = 31973, - [SMALL_STATE(723)] = 31997, - [SMALL_STATE(724)] = 32035, - [SMALL_STATE(725)] = 32059, - [SMALL_STATE(726)] = 32083, - [SMALL_STATE(727)] = 32107, - [SMALL_STATE(728)] = 32131, - [SMALL_STATE(729)] = 32155, - [SMALL_STATE(730)] = 32179, - [SMALL_STATE(731)] = 32203, - [SMALL_STATE(732)] = 32245, - [SMALL_STATE(733)] = 32269, - [SMALL_STATE(734)] = 32293, - [SMALL_STATE(735)] = 32317, - [SMALL_STATE(736)] = 32359, - [SMALL_STATE(737)] = 32401, - [SMALL_STATE(738)] = 32431, - [SMALL_STATE(739)] = 32469, - [SMALL_STATE(740)] = 32509, - [SMALL_STATE(741)] = 32533, - [SMALL_STATE(742)] = 32571, - [SMALL_STATE(743)] = 32595, - [SMALL_STATE(744)] = 32633, - [SMALL_STATE(745)] = 32657, - [SMALL_STATE(746)] = 32681, - [SMALL_STATE(747)] = 32705, - [SMALL_STATE(748)] = 32729, - [SMALL_STATE(749)] = 32753, - [SMALL_STATE(750)] = 32789, - [SMALL_STATE(751)] = 32822, - [SMALL_STATE(752)] = 32855, - [SMALL_STATE(753)] = 32888, - [SMALL_STATE(754)] = 32921, - [SMALL_STATE(755)] = 32954, - [SMALL_STATE(756)] = 32979, - [SMALL_STATE(757)] = 33000, - [SMALL_STATE(758)] = 33021, - [SMALL_STATE(759)] = 33056, - [SMALL_STATE(760)] = 33089, - [SMALL_STATE(761)] = 33110, - [SMALL_STATE(762)] = 33143, - [SMALL_STATE(763)] = 33176, - [SMALL_STATE(764)] = 33209, - [SMALL_STATE(765)] = 33244, - [SMALL_STATE(766)] = 33277, - [SMALL_STATE(767)] = 33299, - [SMALL_STATE(768)] = 33329, - [SMALL_STATE(769)] = 33359, - [SMALL_STATE(770)] = 33381, - [SMALL_STATE(771)] = 33403, - [SMALL_STATE(772)] = 33433, - [SMALL_STATE(773)] = 33463, - [SMALL_STATE(774)] = 33485, - [SMALL_STATE(775)] = 33515, - [SMALL_STATE(776)] = 33545, - [SMALL_STATE(777)] = 33575, - [SMALL_STATE(778)] = 33610, - [SMALL_STATE(779)] = 33645, - [SMALL_STATE(780)] = 33680, - [SMALL_STATE(781)] = 33715, - [SMALL_STATE(782)] = 33747, - [SMALL_STATE(783)] = 33773, - [SMALL_STATE(784)] = 33799, - [SMALL_STATE(785)] = 33831, - [SMALL_STATE(786)] = 33857, - [SMALL_STATE(787)] = 33889, - [SMALL_STATE(788)] = 33921, - [SMALL_STATE(789)] = 33947, - [SMALL_STATE(790)] = 33979, - [SMALL_STATE(791)] = 34005, - [SMALL_STATE(792)] = 34037, - [SMALL_STATE(793)] = 34063, - [SMALL_STATE(794)] = 34089, - [SMALL_STATE(795)] = 34115, - [SMALL_STATE(796)] = 34147, - [SMALL_STATE(797)] = 34173, - [SMALL_STATE(798)] = 34205, - [SMALL_STATE(799)] = 34231, - [SMALL_STATE(800)] = 34260, - [SMALL_STATE(801)] = 34283, - [SMALL_STATE(802)] = 34312, - [SMALL_STATE(803)] = 34335, - [SMALL_STATE(804)] = 34364, - [SMALL_STATE(805)] = 34393, - [SMALL_STATE(806)] = 34422, - [SMALL_STATE(807)] = 34451, - [SMALL_STATE(808)] = 34480, - [SMALL_STATE(809)] = 34509, - [SMALL_STATE(810)] = 34538, - [SMALL_STATE(811)] = 34567, - [SMALL_STATE(812)] = 34596, - [SMALL_STATE(813)] = 34625, - [SMALL_STATE(814)] = 34648, - [SMALL_STATE(815)] = 34677, - [SMALL_STATE(816)] = 34700, - [SMALL_STATE(817)] = 34723, - [SMALL_STATE(818)] = 34752, - [SMALL_STATE(819)] = 34775, - [SMALL_STATE(820)] = 34804, - [SMALL_STATE(821)] = 34833, - [SMALL_STATE(822)] = 34862, - [SMALL_STATE(823)] = 34891, - [SMALL_STATE(824)] = 34914, - [SMALL_STATE(825)] = 34937, - [SMALL_STATE(826)] = 34960, - [SMALL_STATE(827)] = 34989, - [SMALL_STATE(828)] = 35018, - [SMALL_STATE(829)] = 35047, - [SMALL_STATE(830)] = 35060, - [SMALL_STATE(831)] = 35081, - [SMALL_STATE(832)] = 35094, - [SMALL_STATE(833)] = 35115, - [SMALL_STATE(834)] = 35134, - [SMALL_STATE(835)] = 35157, - [SMALL_STATE(836)] = 35180, - [SMALL_STATE(837)] = 35201, - [SMALL_STATE(838)] = 35214, - [SMALL_STATE(839)] = 35227, - [SMALL_STATE(840)] = 35250, - [SMALL_STATE(841)] = 35273, - [SMALL_STATE(842)] = 35286, - [SMALL_STATE(843)] = 35299, - [SMALL_STATE(844)] = 35320, - [SMALL_STATE(845)] = 35341, - [SMALL_STATE(846)] = 35364, - [SMALL_STATE(847)] = 35377, - [SMALL_STATE(848)] = 35400, - [SMALL_STATE(849)] = 35419, - [SMALL_STATE(850)] = 35432, - [SMALL_STATE(851)] = 35450, - [SMALL_STATE(852)] = 35470, - [SMALL_STATE(853)] = 35488, - [SMALL_STATE(854)] = 35500, - [SMALL_STATE(855)] = 35522, - [SMALL_STATE(856)] = 35544, - [SMALL_STATE(857)] = 35566, - [SMALL_STATE(858)] = 35578, - [SMALL_STATE(859)] = 35592, - [SMALL_STATE(860)] = 35610, - [SMALL_STATE(861)] = 35624, - [SMALL_STATE(862)] = 35636, - [SMALL_STATE(863)] = 35648, - [SMALL_STATE(864)] = 35670, - [SMALL_STATE(865)] = 35692, - [SMALL_STATE(866)] = 35712, - [SMALL_STATE(867)] = 35730, - [SMALL_STATE(868)] = 35748, - [SMALL_STATE(869)] = 35770, - [SMALL_STATE(870)] = 35788, - [SMALL_STATE(871)] = 35800, - [SMALL_STATE(872)] = 35820, - [SMALL_STATE(873)] = 35840, - [SMALL_STATE(874)] = 35858, - [SMALL_STATE(875)] = 35876, - [SMALL_STATE(876)] = 35898, - [SMALL_STATE(877)] = 35920, - [SMALL_STATE(878)] = 35936, - [SMALL_STATE(879)] = 35954, - [SMALL_STATE(880)] = 35976, - [SMALL_STATE(881)] = 35998, - [SMALL_STATE(882)] = 36020, - [SMALL_STATE(883)] = 36032, - [SMALL_STATE(884)] = 36044, - [SMALL_STATE(885)] = 36062, - [SMALL_STATE(886)] = 36080, - [SMALL_STATE(887)] = 36102, - [SMALL_STATE(888)] = 36114, - [SMALL_STATE(889)] = 36127, - [SMALL_STATE(890)] = 36146, - [SMALL_STATE(891)] = 36159, - [SMALL_STATE(892)] = 36170, - [SMALL_STATE(893)] = 36183, - [SMALL_STATE(894)] = 36202, - [SMALL_STATE(895)] = 36221, - [SMALL_STATE(896)] = 36234, - [SMALL_STATE(897)] = 36247, - [SMALL_STATE(898)] = 36260, - [SMALL_STATE(899)] = 36279, - [SMALL_STATE(900)] = 36298, - [SMALL_STATE(901)] = 36317, - [SMALL_STATE(902)] = 36336, - [SMALL_STATE(903)] = 36355, - [SMALL_STATE(904)] = 36374, - [SMALL_STATE(905)] = 36393, - [SMALL_STATE(906)] = 36412, - [SMALL_STATE(907)] = 36431, - [SMALL_STATE(908)] = 36444, - [SMALL_STATE(909)] = 36457, - [SMALL_STATE(910)] = 36470, - [SMALL_STATE(911)] = 36481, - [SMALL_STATE(912)] = 36494, - [SMALL_STATE(913)] = 36507, - [SMALL_STATE(914)] = 36526, - [SMALL_STATE(915)] = 36541, - [SMALL_STATE(916)] = 36554, - [SMALL_STATE(917)] = 36573, - [SMALL_STATE(918)] = 36592, - [SMALL_STATE(919)] = 36611, - [SMALL_STATE(920)] = 36624, - [SMALL_STATE(921)] = 36643, - [SMALL_STATE(922)] = 36656, - [SMALL_STATE(923)] = 36667, - [SMALL_STATE(924)] = 36680, - [SMALL_STATE(925)] = 36693, - [SMALL_STATE(926)] = 36708, - [SMALL_STATE(927)] = 36721, - [SMALL_STATE(928)] = 36740, - [SMALL_STATE(929)] = 36753, - [SMALL_STATE(930)] = 36767, - [SMALL_STATE(931)] = 36781, - [SMALL_STATE(932)] = 36795, - [SMALL_STATE(933)] = 36811, - [SMALL_STATE(934)] = 36825, - [SMALL_STATE(935)] = 36839, - [SMALL_STATE(936)] = 36855, - [SMALL_STATE(937)] = 36871, - [SMALL_STATE(938)] = 36885, - [SMALL_STATE(939)] = 36901, - [SMALL_STATE(940)] = 36917, - [SMALL_STATE(941)] = 36933, - [SMALL_STATE(942)] = 36947, - [SMALL_STATE(943)] = 36963, - [SMALL_STATE(944)] = 36979, - [SMALL_STATE(945)] = 36993, - [SMALL_STATE(946)] = 37007, - [SMALL_STATE(947)] = 37023, - [SMALL_STATE(948)] = 37039, - [SMALL_STATE(949)] = 37055, - [SMALL_STATE(950)] = 37065, - [SMALL_STATE(951)] = 37081, - [SMALL_STATE(952)] = 37097, - [SMALL_STATE(953)] = 37113, - [SMALL_STATE(954)] = 37123, - [SMALL_STATE(955)] = 37139, - [SMALL_STATE(956)] = 37155, - [SMALL_STATE(957)] = 37171, - [SMALL_STATE(958)] = 37187, - [SMALL_STATE(959)] = 37197, - [SMALL_STATE(960)] = 37211, - [SMALL_STATE(961)] = 37227, - [SMALL_STATE(962)] = 37243, - [SMALL_STATE(963)] = 37259, - [SMALL_STATE(964)] = 37273, - [SMALL_STATE(965)] = 37289, - [SMALL_STATE(966)] = 37305, - [SMALL_STATE(967)] = 37319, - [SMALL_STATE(968)] = 37333, - [SMALL_STATE(969)] = 37347, - [SMALL_STATE(970)] = 37363, - [SMALL_STATE(971)] = 37379, - [SMALL_STATE(972)] = 37391, - [SMALL_STATE(973)] = 37407, - [SMALL_STATE(974)] = 37423, - [SMALL_STATE(975)] = 37439, - [SMALL_STATE(976)] = 37453, - [SMALL_STATE(977)] = 37469, - [SMALL_STATE(978)] = 37483, - [SMALL_STATE(979)] = 37497, - [SMALL_STATE(980)] = 37513, - [SMALL_STATE(981)] = 37527, - [SMALL_STATE(982)] = 37541, - [SMALL_STATE(983)] = 37551, - [SMALL_STATE(984)] = 37567, - [SMALL_STATE(985)] = 37583, - [SMALL_STATE(986)] = 37599, - [SMALL_STATE(987)] = 37613, - [SMALL_STATE(988)] = 37629, - [SMALL_STATE(989)] = 37643, - [SMALL_STATE(990)] = 37657, - [SMALL_STATE(991)] = 37671, - [SMALL_STATE(992)] = 37687, - [SMALL_STATE(993)] = 37700, - [SMALL_STATE(994)] = 37713, - [SMALL_STATE(995)] = 37722, - [SMALL_STATE(996)] = 37731, - [SMALL_STATE(997)] = 37740, - [SMALL_STATE(998)] = 37749, - [SMALL_STATE(999)] = 37762, - [SMALL_STATE(1000)] = 37771, - [SMALL_STATE(1001)] = 37780, - [SMALL_STATE(1002)] = 37789, - [SMALL_STATE(1003)] = 37802, - [SMALL_STATE(1004)] = 37811, - [SMALL_STATE(1005)] = 37824, - [SMALL_STATE(1006)] = 37833, - [SMALL_STATE(1007)] = 37844, - [SMALL_STATE(1008)] = 37857, - [SMALL_STATE(1009)] = 37866, - [SMALL_STATE(1010)] = 37879, - [SMALL_STATE(1011)] = 37892, - [SMALL_STATE(1012)] = 37903, - [SMALL_STATE(1013)] = 37912, - [SMALL_STATE(1014)] = 37923, - [SMALL_STATE(1015)] = 37936, - [SMALL_STATE(1016)] = 37949, - [SMALL_STATE(1017)] = 37958, - [SMALL_STATE(1018)] = 37967, - [SMALL_STATE(1019)] = 37980, - [SMALL_STATE(1020)] = 37989, - [SMALL_STATE(1021)] = 38002, - [SMALL_STATE(1022)] = 38011, - [SMALL_STATE(1023)] = 38024, - [SMALL_STATE(1024)] = 38037, - [SMALL_STATE(1025)] = 38048, - [SMALL_STATE(1026)] = 38061, - [SMALL_STATE(1027)] = 38074, - [SMALL_STATE(1028)] = 38085, - [SMALL_STATE(1029)] = 38094, - [SMALL_STATE(1030)] = 38107, - [SMALL_STATE(1031)] = 38120, - [SMALL_STATE(1032)] = 38129, - [SMALL_STATE(1033)] = 38142, - [SMALL_STATE(1034)] = 38155, - [SMALL_STATE(1035)] = 38168, - [SMALL_STATE(1036)] = 38177, - [SMALL_STATE(1037)] = 38190, - [SMALL_STATE(1038)] = 38203, - [SMALL_STATE(1039)] = 38216, - [SMALL_STATE(1040)] = 38229, - [SMALL_STATE(1041)] = 38242, - [SMALL_STATE(1042)] = 38253, - [SMALL_STATE(1043)] = 38266, - [SMALL_STATE(1044)] = 38279, - [SMALL_STATE(1045)] = 38292, - [SMALL_STATE(1046)] = 38305, - [SMALL_STATE(1047)] = 38318, - [SMALL_STATE(1048)] = 38331, - [SMALL_STATE(1049)] = 38344, - [SMALL_STATE(1050)] = 38357, - [SMALL_STATE(1051)] = 38370, - [SMALL_STATE(1052)] = 38383, - [SMALL_STATE(1053)] = 38394, - [SMALL_STATE(1054)] = 38407, - [SMALL_STATE(1055)] = 38420, - [SMALL_STATE(1056)] = 38433, - [SMALL_STATE(1057)] = 38446, - [SMALL_STATE(1058)] = 38459, - [SMALL_STATE(1059)] = 38472, - [SMALL_STATE(1060)] = 38485, - [SMALL_STATE(1061)] = 38498, - [SMALL_STATE(1062)] = 38511, - [SMALL_STATE(1063)] = 38520, - [SMALL_STATE(1064)] = 38533, - [SMALL_STATE(1065)] = 38542, - [SMALL_STATE(1066)] = 38551, - [SMALL_STATE(1067)] = 38560, - [SMALL_STATE(1068)] = 38573, - [SMALL_STATE(1069)] = 38582, - [SMALL_STATE(1070)] = 38595, - [SMALL_STATE(1071)] = 38608, - [SMALL_STATE(1072)] = 38619, - [SMALL_STATE(1073)] = 38630, - [SMALL_STATE(1074)] = 38643, - [SMALL_STATE(1075)] = 38656, - [SMALL_STATE(1076)] = 38669, - [SMALL_STATE(1077)] = 38678, - [SMALL_STATE(1078)] = 38691, - [SMALL_STATE(1079)] = 38700, - [SMALL_STATE(1080)] = 38713, - [SMALL_STATE(1081)] = 38726, - [SMALL_STATE(1082)] = 38739, - [SMALL_STATE(1083)] = 38752, - [SMALL_STATE(1084)] = 38765, - [SMALL_STATE(1085)] = 38778, - [SMALL_STATE(1086)] = 38791, - [SMALL_STATE(1087)] = 38804, - [SMALL_STATE(1088)] = 38817, - [SMALL_STATE(1089)] = 38830, - [SMALL_STATE(1090)] = 38843, - [SMALL_STATE(1091)] = 38856, - [SMALL_STATE(1092)] = 38865, - [SMALL_STATE(1093)] = 38876, - [SMALL_STATE(1094)] = 38889, - [SMALL_STATE(1095)] = 38902, - [SMALL_STATE(1096)] = 38915, - [SMALL_STATE(1097)] = 38928, - [SMALL_STATE(1098)] = 38941, - [SMALL_STATE(1099)] = 38954, - [SMALL_STATE(1100)] = 38963, - [SMALL_STATE(1101)] = 38976, - [SMALL_STATE(1102)] = 38989, - [SMALL_STATE(1103)] = 38999, - [SMALL_STATE(1104)] = 39009, - [SMALL_STATE(1105)] = 39019, - [SMALL_STATE(1106)] = 39029, - [SMALL_STATE(1107)] = 39039, - [SMALL_STATE(1108)] = 39049, - [SMALL_STATE(1109)] = 39059, - [SMALL_STATE(1110)] = 39067, - [SMALL_STATE(1111)] = 39077, - [SMALL_STATE(1112)] = 39087, - [SMALL_STATE(1113)] = 39097, - [SMALL_STATE(1114)] = 39105, - [SMALL_STATE(1115)] = 39113, - [SMALL_STATE(1116)] = 39123, - [SMALL_STATE(1117)] = 39133, - [SMALL_STATE(1118)] = 39143, - [SMALL_STATE(1119)] = 39153, - [SMALL_STATE(1120)] = 39163, - [SMALL_STATE(1121)] = 39171, - [SMALL_STATE(1122)] = 39181, - [SMALL_STATE(1123)] = 39191, - [SMALL_STATE(1124)] = 39201, - [SMALL_STATE(1125)] = 39211, - [SMALL_STATE(1126)] = 39221, - [SMALL_STATE(1127)] = 39231, - [SMALL_STATE(1128)] = 39241, - [SMALL_STATE(1129)] = 39249, - [SMALL_STATE(1130)] = 39259, - [SMALL_STATE(1131)] = 39269, - [SMALL_STATE(1132)] = 39279, - [SMALL_STATE(1133)] = 39289, - [SMALL_STATE(1134)] = 39299, - [SMALL_STATE(1135)] = 39309, - [SMALL_STATE(1136)] = 39319, - [SMALL_STATE(1137)] = 39329, - [SMALL_STATE(1138)] = 39339, - [SMALL_STATE(1139)] = 39349, - [SMALL_STATE(1140)] = 39359, - [SMALL_STATE(1141)] = 39369, - [SMALL_STATE(1142)] = 39379, - [SMALL_STATE(1143)] = 39389, - [SMALL_STATE(1144)] = 39399, - [SMALL_STATE(1145)] = 39409, - [SMALL_STATE(1146)] = 39419, - [SMALL_STATE(1147)] = 39429, - [SMALL_STATE(1148)] = 39439, - [SMALL_STATE(1149)] = 39447, - [SMALL_STATE(1150)] = 39457, - [SMALL_STATE(1151)] = 39467, - [SMALL_STATE(1152)] = 39477, - [SMALL_STATE(1153)] = 39487, - [SMALL_STATE(1154)] = 39495, - [SMALL_STATE(1155)] = 39505, - [SMALL_STATE(1156)] = 39515, - [SMALL_STATE(1157)] = 39525, - [SMALL_STATE(1158)] = 39533, - [SMALL_STATE(1159)] = 39541, - [SMALL_STATE(1160)] = 39549, - [SMALL_STATE(1161)] = 39557, - [SMALL_STATE(1162)] = 39567, - [SMALL_STATE(1163)] = 39575, - [SMALL_STATE(1164)] = 39585, - [SMALL_STATE(1165)] = 39595, - [SMALL_STATE(1166)] = 39605, - [SMALL_STATE(1167)] = 39615, - [SMALL_STATE(1168)] = 39625, - [SMALL_STATE(1169)] = 39635, - [SMALL_STATE(1170)] = 39645, - [SMALL_STATE(1171)] = 39655, - [SMALL_STATE(1172)] = 39665, - [SMALL_STATE(1173)] = 39675, - [SMALL_STATE(1174)] = 39683, - [SMALL_STATE(1175)] = 39693, - [SMALL_STATE(1176)] = 39703, - [SMALL_STATE(1177)] = 39713, - [SMALL_STATE(1178)] = 39723, - [SMALL_STATE(1179)] = 39733, - [SMALL_STATE(1180)] = 39743, - [SMALL_STATE(1181)] = 39753, - [SMALL_STATE(1182)] = 39763, - [SMALL_STATE(1183)] = 39773, - [SMALL_STATE(1184)] = 39783, - [SMALL_STATE(1185)] = 39793, - [SMALL_STATE(1186)] = 39803, - [SMALL_STATE(1187)] = 39813, - [SMALL_STATE(1188)] = 39821, - [SMALL_STATE(1189)] = 39831, - [SMALL_STATE(1190)] = 39841, - [SMALL_STATE(1191)] = 39849, - [SMALL_STATE(1192)] = 39857, - [SMALL_STATE(1193)] = 39867, - [SMALL_STATE(1194)] = 39877, - [SMALL_STATE(1195)] = 39887, - [SMALL_STATE(1196)] = 39897, - [SMALL_STATE(1197)] = 39905, - [SMALL_STATE(1198)] = 39915, - [SMALL_STATE(1199)] = 39923, - [SMALL_STATE(1200)] = 39933, - [SMALL_STATE(1201)] = 39941, - [SMALL_STATE(1202)] = 39951, - [SMALL_STATE(1203)] = 39961, - [SMALL_STATE(1204)] = 39971, - [SMALL_STATE(1205)] = 39981, - [SMALL_STATE(1206)] = 39991, - [SMALL_STATE(1207)] = 40001, - [SMALL_STATE(1208)] = 40011, - [SMALL_STATE(1209)] = 40021, - [SMALL_STATE(1210)] = 40029, - [SMALL_STATE(1211)] = 40039, - [SMALL_STATE(1212)] = 40049, - [SMALL_STATE(1213)] = 40059, - [SMALL_STATE(1214)] = 40069, - [SMALL_STATE(1215)] = 40079, - [SMALL_STATE(1216)] = 40089, - [SMALL_STATE(1217)] = 40099, - [SMALL_STATE(1218)] = 40109, - [SMALL_STATE(1219)] = 40119, - [SMALL_STATE(1220)] = 40129, - [SMALL_STATE(1221)] = 40137, - [SMALL_STATE(1222)] = 40147, - [SMALL_STATE(1223)] = 40157, - [SMALL_STATE(1224)] = 40167, - [SMALL_STATE(1225)] = 40177, - [SMALL_STATE(1226)] = 40187, - [SMALL_STATE(1227)] = 40197, - [SMALL_STATE(1228)] = 40207, - [SMALL_STATE(1229)] = 40217, - [SMALL_STATE(1230)] = 40227, - [SMALL_STATE(1231)] = 40237, - [SMALL_STATE(1232)] = 40247, - [SMALL_STATE(1233)] = 40257, - [SMALL_STATE(1234)] = 40265, - [SMALL_STATE(1235)] = 40275, - [SMALL_STATE(1236)] = 40285, - [SMALL_STATE(1237)] = 40295, - [SMALL_STATE(1238)] = 40305, - [SMALL_STATE(1239)] = 40315, - [SMALL_STATE(1240)] = 40325, - [SMALL_STATE(1241)] = 40333, - [SMALL_STATE(1242)] = 40343, - [SMALL_STATE(1243)] = 40353, - [SMALL_STATE(1244)] = 40361, - [SMALL_STATE(1245)] = 40369, - [SMALL_STATE(1246)] = 40379, - [SMALL_STATE(1247)] = 40389, - [SMALL_STATE(1248)] = 40399, - [SMALL_STATE(1249)] = 40407, - [SMALL_STATE(1250)] = 40417, - [SMALL_STATE(1251)] = 40427, - [SMALL_STATE(1252)] = 40437, - [SMALL_STATE(1253)] = 40447, - [SMALL_STATE(1254)] = 40457, - [SMALL_STATE(1255)] = 40467, - [SMALL_STATE(1256)] = 40477, - [SMALL_STATE(1257)] = 40487, - [SMALL_STATE(1258)] = 40495, - [SMALL_STATE(1259)] = 40505, - [SMALL_STATE(1260)] = 40513, - [SMALL_STATE(1261)] = 40523, - [SMALL_STATE(1262)] = 40533, - [SMALL_STATE(1263)] = 40543, - [SMALL_STATE(1264)] = 40553, - [SMALL_STATE(1265)] = 40563, - [SMALL_STATE(1266)] = 40573, - [SMALL_STATE(1267)] = 40583, - [SMALL_STATE(1268)] = 40593, - [SMALL_STATE(1269)] = 40603, - [SMALL_STATE(1270)] = 40613, - [SMALL_STATE(1271)] = 40623, - [SMALL_STATE(1272)] = 40633, - [SMALL_STATE(1273)] = 40643, - [SMALL_STATE(1274)] = 40653, - [SMALL_STATE(1275)] = 40663, - [SMALL_STATE(1276)] = 40673, - [SMALL_STATE(1277)] = 40683, - [SMALL_STATE(1278)] = 40693, - [SMALL_STATE(1279)] = 40703, - [SMALL_STATE(1280)] = 40713, - [SMALL_STATE(1281)] = 40721, - [SMALL_STATE(1282)] = 40731, - [SMALL_STATE(1283)] = 40738, - [SMALL_STATE(1284)] = 40745, - [SMALL_STATE(1285)] = 40752, - [SMALL_STATE(1286)] = 40759, - [SMALL_STATE(1287)] = 40766, - [SMALL_STATE(1288)] = 40773, - [SMALL_STATE(1289)] = 40780, - [SMALL_STATE(1290)] = 40787, - [SMALL_STATE(1291)] = 40794, - [SMALL_STATE(1292)] = 40801, - [SMALL_STATE(1293)] = 40808, - [SMALL_STATE(1294)] = 40815, - [SMALL_STATE(1295)] = 40822, - [SMALL_STATE(1296)] = 40829, - [SMALL_STATE(1297)] = 40836, - [SMALL_STATE(1298)] = 40843, - [SMALL_STATE(1299)] = 40850, - [SMALL_STATE(1300)] = 40857, - [SMALL_STATE(1301)] = 40864, - [SMALL_STATE(1302)] = 40871, - [SMALL_STATE(1303)] = 40878, - [SMALL_STATE(1304)] = 40885, - [SMALL_STATE(1305)] = 40892, - [SMALL_STATE(1306)] = 40899, - [SMALL_STATE(1307)] = 40906, - [SMALL_STATE(1308)] = 40913, - [SMALL_STATE(1309)] = 40920, - [SMALL_STATE(1310)] = 40927, - [SMALL_STATE(1311)] = 40934, - [SMALL_STATE(1312)] = 40941, - [SMALL_STATE(1313)] = 40948, - [SMALL_STATE(1314)] = 40955, - [SMALL_STATE(1315)] = 40962, - [SMALL_STATE(1316)] = 40969, - [SMALL_STATE(1317)] = 40976, - [SMALL_STATE(1318)] = 40983, - [SMALL_STATE(1319)] = 40990, - [SMALL_STATE(1320)] = 40997, - [SMALL_STATE(1321)] = 41004, - [SMALL_STATE(1322)] = 41011, - [SMALL_STATE(1323)] = 41018, - [SMALL_STATE(1324)] = 41025, - [SMALL_STATE(1325)] = 41032, - [SMALL_STATE(1326)] = 41039, - [SMALL_STATE(1327)] = 41046, - [SMALL_STATE(1328)] = 41053, - [SMALL_STATE(1329)] = 41060, - [SMALL_STATE(1330)] = 41067, - [SMALL_STATE(1331)] = 41074, - [SMALL_STATE(1332)] = 41081, - [SMALL_STATE(1333)] = 41088, - [SMALL_STATE(1334)] = 41095, - [SMALL_STATE(1335)] = 41102, - [SMALL_STATE(1336)] = 41109, - [SMALL_STATE(1337)] = 41116, - [SMALL_STATE(1338)] = 41123, - [SMALL_STATE(1339)] = 41130, - [SMALL_STATE(1340)] = 41137, - [SMALL_STATE(1341)] = 41144, - [SMALL_STATE(1342)] = 41151, - [SMALL_STATE(1343)] = 41158, - [SMALL_STATE(1344)] = 41165, - [SMALL_STATE(1345)] = 41172, - [SMALL_STATE(1346)] = 41179, - [SMALL_STATE(1347)] = 41186, - [SMALL_STATE(1348)] = 41193, - [SMALL_STATE(1349)] = 41200, - [SMALL_STATE(1350)] = 41207, - [SMALL_STATE(1351)] = 41214, - [SMALL_STATE(1352)] = 41221, - [SMALL_STATE(1353)] = 41228, - [SMALL_STATE(1354)] = 41235, - [SMALL_STATE(1355)] = 41242, - [SMALL_STATE(1356)] = 41249, - [SMALL_STATE(1357)] = 41256, - [SMALL_STATE(1358)] = 41263, - [SMALL_STATE(1359)] = 41270, - [SMALL_STATE(1360)] = 41277, - [SMALL_STATE(1361)] = 41284, - [SMALL_STATE(1362)] = 41291, - [SMALL_STATE(1363)] = 41298, - [SMALL_STATE(1364)] = 41305, - [SMALL_STATE(1365)] = 41312, - [SMALL_STATE(1366)] = 41319, - [SMALL_STATE(1367)] = 41326, - [SMALL_STATE(1368)] = 41333, - [SMALL_STATE(1369)] = 41340, - [SMALL_STATE(1370)] = 41347, - [SMALL_STATE(1371)] = 41354, - [SMALL_STATE(1372)] = 41361, - [SMALL_STATE(1373)] = 41368, - [SMALL_STATE(1374)] = 41375, - [SMALL_STATE(1375)] = 41382, - [SMALL_STATE(1376)] = 41389, - [SMALL_STATE(1377)] = 41396, - [SMALL_STATE(1378)] = 41403, - [SMALL_STATE(1379)] = 41410, - [SMALL_STATE(1380)] = 41417, - [SMALL_STATE(1381)] = 41424, - [SMALL_STATE(1382)] = 41431, - [SMALL_STATE(1383)] = 41438, - [SMALL_STATE(1384)] = 41445, + [SMALL_STATE(251)] = 0, + [SMALL_STATE(252)] = 87, + [SMALL_STATE(253)] = 176, + [SMALL_STATE(254)] = 263, + [SMALL_STATE(255)] = 352, + [SMALL_STATE(256)] = 423, + [SMALL_STATE(257)] = 514, + [SMALL_STATE(258)] = 585, + [SMALL_STATE(259)] = 674, + [SMALL_STATE(260)] = 752, + [SMALL_STATE(261)] = 837, + [SMALL_STATE(262)] = 922, + [SMALL_STATE(263)] = 1011, + [SMALL_STATE(264)] = 1099, + [SMALL_STATE(265)] = 1183, + [SMALL_STATE(266)] = 1267, + [SMALL_STATE(267)] = 1339, + [SMALL_STATE(268)] = 1423, + [SMALL_STATE(269)] = 1492, + [SMALL_STATE(270)] = 1559, + [SMALL_STATE(271)] = 1628, + [SMALL_STATE(272)] = 1695, + [SMALL_STATE(273)] = 1764, + [SMALL_STATE(274)] = 1833, + [SMALL_STATE(275)] = 1902, + [SMALL_STATE(276)] = 1971, + [SMALL_STATE(277)] = 2038, + [SMALL_STATE(278)] = 2107, + [SMALL_STATE(279)] = 2174, + [SMALL_STATE(280)] = 2241, + [SMALL_STATE(281)] = 2310, + [SMALL_STATE(282)] = 2379, + [SMALL_STATE(283)] = 2450, + [SMALL_STATE(284)] = 2517, + [SMALL_STATE(285)] = 2584, + [SMALL_STATE(286)] = 2651, + [SMALL_STATE(287)] = 2720, + [SMALL_STATE(288)] = 2786, + [SMALL_STATE(289)] = 2852, + [SMALL_STATE(290)] = 2918, + [SMALL_STATE(291)] = 2984, + [SMALL_STATE(292)] = 3050, + [SMALL_STATE(293)] = 3116, + [SMALL_STATE(294)] = 3182, + [SMALL_STATE(295)] = 3248, + [SMALL_STATE(296)] = 3314, + [SMALL_STATE(297)] = 3380, + [SMALL_STATE(298)] = 3446, + [SMALL_STATE(299)] = 3512, + [SMALL_STATE(300)] = 3578, + [SMALL_STATE(301)] = 3644, + [SMALL_STATE(302)] = 3710, + [SMALL_STATE(303)] = 3776, + [SMALL_STATE(304)] = 3842, + [SMALL_STATE(305)] = 3908, + [SMALL_STATE(306)] = 3974, + [SMALL_STATE(307)] = 4040, + [SMALL_STATE(308)] = 4106, + [SMALL_STATE(309)] = 4172, + [SMALL_STATE(310)] = 4238, + [SMALL_STATE(311)] = 4304, + [SMALL_STATE(312)] = 4370, + [SMALL_STATE(313)] = 4436, + [SMALL_STATE(314)] = 4502, + [SMALL_STATE(315)] = 4568, + [SMALL_STATE(316)] = 4634, + [SMALL_STATE(317)] = 4700, + [SMALL_STATE(318)] = 4766, + [SMALL_STATE(319)] = 4832, + [SMALL_STATE(320)] = 4898, + [SMALL_STATE(321)] = 4964, + [SMALL_STATE(322)] = 5030, + [SMALL_STATE(323)] = 5096, + [SMALL_STATE(324)] = 5162, + [SMALL_STATE(325)] = 5228, + [SMALL_STATE(326)] = 5294, + [SMALL_STATE(327)] = 5360, + [SMALL_STATE(328)] = 5426, + [SMALL_STATE(329)] = 5492, + [SMALL_STATE(330)] = 5558, + [SMALL_STATE(331)] = 5624, + [SMALL_STATE(332)] = 5690, + [SMALL_STATE(333)] = 5756, + [SMALL_STATE(334)] = 5822, + [SMALL_STATE(335)] = 5888, + [SMALL_STATE(336)] = 5954, + [SMALL_STATE(337)] = 6020, + [SMALL_STATE(338)] = 6086, + [SMALL_STATE(339)] = 6152, + [SMALL_STATE(340)] = 6218, + [SMALL_STATE(341)] = 6284, + [SMALL_STATE(342)] = 6350, + [SMALL_STATE(343)] = 6416, + [SMALL_STATE(344)] = 6482, + [SMALL_STATE(345)] = 6548, + [SMALL_STATE(346)] = 6614, + [SMALL_STATE(347)] = 6680, + [SMALL_STATE(348)] = 6746, + [SMALL_STATE(349)] = 6812, + [SMALL_STATE(350)] = 6878, + [SMALL_STATE(351)] = 6944, + [SMALL_STATE(352)] = 7010, + [SMALL_STATE(353)] = 7076, + [SMALL_STATE(354)] = 7142, + [SMALL_STATE(355)] = 7208, + [SMALL_STATE(356)] = 7274, + [SMALL_STATE(357)] = 7340, + [SMALL_STATE(358)] = 7406, + [SMALL_STATE(359)] = 7472, + [SMALL_STATE(360)] = 7538, + [SMALL_STATE(361)] = 7604, + [SMALL_STATE(362)] = 7670, + [SMALL_STATE(363)] = 7736, + [SMALL_STATE(364)] = 7802, + [SMALL_STATE(365)] = 7868, + [SMALL_STATE(366)] = 7934, + [SMALL_STATE(367)] = 8000, + [SMALL_STATE(368)] = 8066, + [SMALL_STATE(369)] = 8132, + [SMALL_STATE(370)] = 8198, + [SMALL_STATE(371)] = 8264, + [SMALL_STATE(372)] = 8330, + [SMALL_STATE(373)] = 8396, + [SMALL_STATE(374)] = 8462, + [SMALL_STATE(375)] = 8528, + [SMALL_STATE(376)] = 8594, + [SMALL_STATE(377)] = 8660, + [SMALL_STATE(378)] = 8726, + [SMALL_STATE(379)] = 8792, + [SMALL_STATE(380)] = 8873, + [SMALL_STATE(381)] = 8954, + [SMALL_STATE(382)] = 9035, + [SMALL_STATE(383)] = 9099, + [SMALL_STATE(384)] = 9163, + [SMALL_STATE(385)] = 9227, + [SMALL_STATE(386)] = 9291, + [SMALL_STATE(387)] = 9355, + [SMALL_STATE(388)] = 9422, + [SMALL_STATE(389)] = 9491, + [SMALL_STATE(390)] = 9560, + [SMALL_STATE(391)] = 9629, + [SMALL_STATE(392)] = 9698, + [SMALL_STATE(393)] = 9766, + [SMALL_STATE(394)] = 9828, + [SMALL_STATE(395)] = 9898, + [SMALL_STATE(396)] = 9966, + [SMALL_STATE(397)] = 10034, + [SMALL_STATE(398)] = 10096, + [SMALL_STATE(399)] = 10158, + [SMALL_STATE(400)] = 10228, + [SMALL_STATE(401)] = 10300, + [SMALL_STATE(402)] = 10362, + [SMALL_STATE(403)] = 10432, + [SMALL_STATE(404)] = 10494, + [SMALL_STATE(405)] = 10564, + [SMALL_STATE(406)] = 10634, + [SMALL_STATE(407)] = 10702, + [SMALL_STATE(408)] = 10772, + [SMALL_STATE(409)] = 10838, + [SMALL_STATE(410)] = 10910, + [SMALL_STATE(411)] = 10971, + [SMALL_STATE(412)] = 11040, + [SMALL_STATE(413)] = 11105, + [SMALL_STATE(414)] = 11166, + [SMALL_STATE(415)] = 11227, + [SMALL_STATE(416)] = 11292, + [SMALL_STATE(417)] = 11353, + [SMALL_STATE(418)] = 11413, + [SMALL_STATE(419)] = 11473, + [SMALL_STATE(420)] = 11543, + [SMALL_STATE(421)] = 11603, + [SMALL_STATE(422)] = 11673, + [SMALL_STATE(423)] = 11741, + [SMALL_STATE(424)] = 11809, + [SMALL_STATE(425)] = 11874, + [SMALL_STATE(426)] = 11939, + [SMALL_STATE(427)] = 12004, + [SMALL_STATE(428)] = 12073, + [SMALL_STATE(429)] = 12138, + [SMALL_STATE(430)] = 12207, + [SMALL_STATE(431)] = 12272, + [SMALL_STATE(432)] = 12337, + [SMALL_STATE(433)] = 12399, + [SMALL_STATE(434)] = 12465, + [SMALL_STATE(435)] = 12533, + [SMALL_STATE(436)] = 12596, + [SMALL_STATE(437)] = 12659, + [SMALL_STATE(438)] = 12720, + [SMALL_STATE(439)] = 12773, + [SMALL_STATE(440)] = 12836, + [SMALL_STATE(441)] = 12922, + [SMALL_STATE(442)] = 12972, + [SMALL_STATE(443)] = 13030, + [SMALL_STATE(444)] = 13116, + [SMALL_STATE(445)] = 13202, + [SMALL_STATE(446)] = 13288, + [SMALL_STATE(447)] = 13374, + [SMALL_STATE(448)] = 13460, + [SMALL_STATE(449)] = 13546, + [SMALL_STATE(450)] = 13630, + [SMALL_STATE(451)] = 13698, + [SMALL_STATE(452)] = 13748, + [SMALL_STATE(453)] = 13824, + [SMALL_STATE(454)] = 13894, + [SMALL_STATE(455)] = 13968, + [SMALL_STATE(456)] = 14054, + [SMALL_STATE(457)] = 14106, + [SMALL_STATE(458)] = 14192, + [SMALL_STATE(459)] = 14280, + [SMALL_STATE(460)] = 14332, + [SMALL_STATE(461)] = 14382, + [SMALL_STATE(462)] = 14446, + [SMALL_STATE(463)] = 14532, + [SMALL_STATE(464)] = 14612, + [SMALL_STATE(465)] = 14662, + [SMALL_STATE(466)] = 14748, + [SMALL_STATE(467)] = 14800, + [SMALL_STATE(468)] = 14886, + [SMALL_STATE(469)] = 14972, + [SMALL_STATE(470)] = 15025, + [SMALL_STATE(471)] = 15100, + [SMALL_STATE(472)] = 15147, + [SMALL_STATE(473)] = 15194, + [SMALL_STATE(474)] = 15241, + [SMALL_STATE(475)] = 15326, + [SMALL_STATE(476)] = 15373, + [SMALL_STATE(477)] = 15458, + [SMALL_STATE(478)] = 15505, + [SMALL_STATE(479)] = 15552, + [SMALL_STATE(480)] = 15599, + [SMALL_STATE(481)] = 15646, + [SMALL_STATE(482)] = 15693, + [SMALL_STATE(483)] = 15778, + [SMALL_STATE(484)] = 15825, + [SMALL_STATE(485)] = 15872, + [SMALL_STATE(486)] = 15919, + [SMALL_STATE(487)] = 15982, + [SMALL_STATE(488)] = 16067, + [SMALL_STATE(489)] = 16114, + [SMALL_STATE(490)] = 16161, + [SMALL_STATE(491)] = 16246, + [SMALL_STATE(492)] = 16293, + [SMALL_STATE(493)] = 16352, + [SMALL_STATE(494)] = 16399, + [SMALL_STATE(495)] = 16446, + [SMALL_STATE(496)] = 16493, + [SMALL_STATE(497)] = 16540, + [SMALL_STATE(498)] = 16587, + [SMALL_STATE(499)] = 16636, + [SMALL_STATE(500)] = 16725, + [SMALL_STATE(501)] = 16772, + [SMALL_STATE(502)] = 16833, + [SMALL_STATE(503)] = 16882, + [SMALL_STATE(504)] = 16929, + [SMALL_STATE(505)] = 16976, + [SMALL_STATE(506)] = 17065, + [SMALL_STATE(507)] = 17112, + [SMALL_STATE(508)] = 17201, + [SMALL_STATE(509)] = 17248, + [SMALL_STATE(510)] = 17295, + [SMALL_STATE(511)] = 17344, + [SMALL_STATE(512)] = 17393, + [SMALL_STATE(513)] = 17440, + [SMALL_STATE(514)] = 17525, + [SMALL_STATE(515)] = 17572, + [SMALL_STATE(516)] = 17619, + [SMALL_STATE(517)] = 17680, + [SMALL_STATE(518)] = 17727, + [SMALL_STATE(519)] = 17774, + [SMALL_STATE(520)] = 17841, + [SMALL_STATE(521)] = 17888, + [SMALL_STATE(522)] = 17935, + [SMALL_STATE(523)] = 18008, + [SMALL_STATE(524)] = 18093, + [SMALL_STATE(525)] = 18140, + [SMALL_STATE(526)] = 18187, + [SMALL_STATE(527)] = 18270, + [SMALL_STATE(528)] = 18331, + [SMALL_STATE(529)] = 18378, + [SMALL_STATE(530)] = 18463, + [SMALL_STATE(531)] = 18542, + [SMALL_STATE(532)] = 18627, + [SMALL_STATE(533)] = 18674, + [SMALL_STATE(534)] = 18721, + [SMALL_STATE(535)] = 18806, + [SMALL_STATE(536)] = 18859, + [SMALL_STATE(537)] = 18906, + [SMALL_STATE(538)] = 18953, + [SMALL_STATE(539)] = 19000, + [SMALL_STATE(540)] = 19047, + [SMALL_STATE(541)] = 19094, + [SMALL_STATE(542)] = 19141, + [SMALL_STATE(543)] = 19226, + [SMALL_STATE(544)] = 19295, + [SMALL_STATE(545)] = 19342, + [SMALL_STATE(546)] = 19389, + [SMALL_STATE(547)] = 19474, + [SMALL_STATE(548)] = 19521, + [SMALL_STATE(549)] = 19606, + [SMALL_STATE(550)] = 19653, + [SMALL_STATE(551)] = 19700, + [SMALL_STATE(552)] = 19747, + [SMALL_STATE(553)] = 19794, + [SMALL_STATE(554)] = 19879, + [SMALL_STATE(555)] = 19926, + [SMALL_STATE(556)] = 19973, + [SMALL_STATE(557)] = 20020, + [SMALL_STATE(558)] = 20067, + [SMALL_STATE(559)] = 20152, + [SMALL_STATE(560)] = 20199, + [SMALL_STATE(561)] = 20249, + [SMALL_STATE(562)] = 20297, + [SMALL_STATE(563)] = 20347, + [SMALL_STATE(564)] = 20435, + [SMALL_STATE(565)] = 20485, + [SMALL_STATE(566)] = 20535, + [SMALL_STATE(567)] = 20619, + [SMALL_STATE(568)] = 20669, + [SMALL_STATE(569)] = 20757, + [SMALL_STATE(570)] = 20805, + [SMALL_STATE(571)] = 20891, + [SMALL_STATE(572)] = 20947, + [SMALL_STATE(573)] = 20997, + [SMALL_STATE(574)] = 21083, + [SMALL_STATE(575)] = 21133, + [SMALL_STATE(576)] = 21183, + [SMALL_STATE(577)] = 21235, + [SMALL_STATE(578)] = 21287, + [SMALL_STATE(579)] = 21337, + [SMALL_STATE(580)] = 21389, + [SMALL_STATE(581)] = 21441, + [SMALL_STATE(582)] = 21489, + [SMALL_STATE(583)] = 21537, + [SMALL_STATE(584)] = 21625, + [SMALL_STATE(585)] = 21713, + [SMALL_STATE(586)] = 21799, + [SMALL_STATE(587)] = 21885, + [SMALL_STATE(588)] = 21973, + [SMALL_STATE(589)] = 22021, + [SMALL_STATE(590)] = 22105, + [SMALL_STATE(591)] = 22153, + [SMALL_STATE(592)] = 22238, + [SMALL_STATE(593)] = 22321, + [SMALL_STATE(594)] = 22406, + [SMALL_STATE(595)] = 22451, + [SMALL_STATE(596)] = 22496, + [SMALL_STATE(597)] = 22581, + [SMALL_STATE(598)] = 22626, + [SMALL_STATE(599)] = 22671, + [SMALL_STATE(600)] = 22756, + [SMALL_STATE(601)] = 22807, + [SMALL_STATE(602)] = 22852, + [SMALL_STATE(603)] = 22897, + [SMALL_STATE(604)] = 22942, + [SMALL_STATE(605)] = 22987, + [SMALL_STATE(606)] = 23072, + [SMALL_STATE(607)] = 23117, + [SMALL_STATE(608)] = 23202, + [SMALL_STATE(609)] = 23251, + [SMALL_STATE(610)] = 23296, + [SMALL_STATE(611)] = 23341, + [SMALL_STATE(612)] = 23386, + [SMALL_STATE(613)] = 23431, + [SMALL_STATE(614)] = 23476, + [SMALL_STATE(615)] = 23521, + [SMALL_STATE(616)] = 23566, + [SMALL_STATE(617)] = 23611, + [SMALL_STATE(618)] = 23656, + [SMALL_STATE(619)] = 23741, + [SMALL_STATE(620)] = 23786, + [SMALL_STATE(621)] = 23869, + [SMALL_STATE(622)] = 23914, + [SMALL_STATE(623)] = 23959, + [SMALL_STATE(624)] = 24004, + [SMALL_STATE(625)] = 24049, + [SMALL_STATE(626)] = 24094, + [SMALL_STATE(627)] = 24179, + [SMALL_STATE(628)] = 24224, + [SMALL_STATE(629)] = 24269, + [SMALL_STATE(630)] = 24314, + [SMALL_STATE(631)] = 24359, + [SMALL_STATE(632)] = 24404, + [SMALL_STATE(633)] = 24449, + [SMALL_STATE(634)] = 24494, + [SMALL_STATE(635)] = 24539, + [SMALL_STATE(636)] = 24584, + [SMALL_STATE(637)] = 24629, + [SMALL_STATE(638)] = 24714, + [SMALL_STATE(639)] = 24759, + [SMALL_STATE(640)] = 24808, + [SMALL_STATE(641)] = 24893, + [SMALL_STATE(642)] = 24938, + [SMALL_STATE(643)] = 24983, + [SMALL_STATE(644)] = 25028, + [SMALL_STATE(645)] = 25113, + [SMALL_STATE(646)] = 25158, + [SMALL_STATE(647)] = 25243, + [SMALL_STATE(648)] = 25328, + [SMALL_STATE(649)] = 25413, + [SMALL_STATE(650)] = 25458, + [SMALL_STATE(651)] = 25543, + [SMALL_STATE(652)] = 25588, + [SMALL_STATE(653)] = 25633, + [SMALL_STATE(654)] = 25678, + [SMALL_STATE(655)] = 25761, + [SMALL_STATE(656)] = 25806, + [SMALL_STATE(657)] = 25891, + [SMALL_STATE(658)] = 25936, + [SMALL_STATE(659)] = 25981, + [SMALL_STATE(660)] = 26066, + [SMALL_STATE(661)] = 26111, + [SMALL_STATE(662)] = 26156, + [SMALL_STATE(663)] = 26201, + [SMALL_STATE(664)] = 26246, + [SMALL_STATE(665)] = 26291, + [SMALL_STATE(666)] = 26374, + [SMALL_STATE(667)] = 26440, + [SMALL_STATE(668)] = 26522, + [SMALL_STATE(669)] = 26586, + [SMALL_STATE(670)] = 26668, + [SMALL_STATE(671)] = 26744, + [SMALL_STATE(672)] = 26816, + [SMALL_STATE(673)] = 26898, + [SMALL_STATE(674)] = 26968, + [SMALL_STATE(675)] = 27028, + [SMALL_STATE(676)] = 27110, + [SMALL_STATE(677)] = 27190, + [SMALL_STATE(678)] = 27272, + [SMALL_STATE(679)] = 27354, + [SMALL_STATE(680)] = 27436, + [SMALL_STATE(681)] = 27518, + [SMALL_STATE(682)] = 27600, + [SMALL_STATE(683)] = 27682, + [SMALL_STATE(684)] = 27764, + [SMALL_STATE(685)] = 27828, + [SMALL_STATE(686)] = 27910, + [SMALL_STATE(687)] = 27992, + [SMALL_STATE(688)] = 28074, + [SMALL_STATE(689)] = 28156, + [SMALL_STATE(690)] = 28238, + [SMALL_STATE(691)] = 28320, + [SMALL_STATE(692)] = 28402, + [SMALL_STATE(693)] = 28484, + [SMALL_STATE(694)] = 28560, + [SMALL_STATE(695)] = 28642, + [SMALL_STATE(696)] = 28724, + [SMALL_STATE(697)] = 28796, + [SMALL_STATE(698)] = 28846, + [SMALL_STATE(699)] = 28928, + [SMALL_STATE(700)] = 29010, + [SMALL_STATE(701)] = 29060, + [SMALL_STATE(702)] = 29142, + [SMALL_STATE(703)] = 29224, + [SMALL_STATE(704)] = 29274, + [SMALL_STATE(705)] = 29340, + [SMALL_STATE(706)] = 29422, + [SMALL_STATE(707)] = 29504, + [SMALL_STATE(708)] = 29584, + [SMALL_STATE(709)] = 29654, + [SMALL_STATE(710)] = 29736, + [SMALL_STATE(711)] = 29796, + [SMALL_STATE(712)] = 29878, + [SMALL_STATE(713)] = 29960, + [SMALL_STATE(714)] = 30042, + [SMALL_STATE(715)] = 30124, + [SMALL_STATE(716)] = 30206, + [SMALL_STATE(717)] = 30255, + [SMALL_STATE(718)] = 30304, + [SMALL_STATE(719)] = 30383, + [SMALL_STATE(720)] = 30462, + [SMALL_STATE(721)] = 30507, + [SMALL_STATE(722)] = 30556, + [SMALL_STATE(723)] = 30605, + [SMALL_STATE(724)] = 30687, + [SMALL_STATE(725)] = 30769, + [SMALL_STATE(726)] = 30851, + [SMALL_STATE(727)] = 30933, + [SMALL_STATE(728)] = 31015, + [SMALL_STATE(729)] = 31097, + [SMALL_STATE(730)] = 31171, + [SMALL_STATE(731)] = 31227, + [SMALL_STATE(732)] = 31283, + [SMALL_STATE(733)] = 31334, + [SMALL_STATE(734)] = 31395, + [SMALL_STATE(735)] = 31452, + [SMALL_STATE(736)] = 31509, + [SMALL_STATE(737)] = 31570, + [SMALL_STATE(738)] = 31631, + [SMALL_STATE(739)] = 31686, + [SMALL_STATE(740)] = 31743, + [SMALL_STATE(741)] = 31798, + [SMALL_STATE(742)] = 31853, + [SMALL_STATE(743)] = 31910, + [SMALL_STATE(744)] = 31971, + [SMALL_STATE(745)] = 32032, + [SMALL_STATE(746)] = 32093, + [SMALL_STATE(747)] = 32148, + [SMALL_STATE(748)] = 32205, + [SMALL_STATE(749)] = 32260, + [SMALL_STATE(750)] = 32317, + [SMALL_STATE(751)] = 32378, + [SMALL_STATE(752)] = 32439, + [SMALL_STATE(753)] = 32494, + [SMALL_STATE(754)] = 32544, + [SMALL_STATE(755)] = 32594, + [SMALL_STATE(756)] = 32644, + [SMALL_STATE(757)] = 32694, + [SMALL_STATE(758)] = 32744, + [SMALL_STATE(759)] = 32794, + [SMALL_STATE(760)] = 32841, + [SMALL_STATE(761)] = 32890, + [SMALL_STATE(762)] = 32932, + [SMALL_STATE(763)] = 32976, + [SMALL_STATE(764)] = 33022, + [SMALL_STATE(765)] = 33066, + [SMALL_STATE(766)] = 33110, + [SMALL_STATE(767)] = 33154, + [SMALL_STATE(768)] = 33210, + [SMALL_STATE(769)] = 33252, + [SMALL_STATE(770)] = 33294, + [SMALL_STATE(771)] = 33340, + [SMALL_STATE(772)] = 33377, + [SMALL_STATE(773)] = 33414, + [SMALL_STATE(774)] = 33451, + [SMALL_STATE(775)] = 33496, + [SMALL_STATE(776)] = 33535, + [SMALL_STATE(777)] = 33572, + [SMALL_STATE(778)] = 33623, + [SMALL_STATE(779)] = 33660, + [SMALL_STATE(780)] = 33697, + [SMALL_STATE(781)] = 33748, + [SMALL_STATE(782)] = 33793, + [SMALL_STATE(783)] = 33825, + [SMALL_STATE(784)] = 33865, + [SMALL_STATE(785)] = 33904, + [SMALL_STATE(786)] = 33929, + [SMALL_STATE(787)] = 33968, + [SMALL_STATE(788)] = 33993, + [SMALL_STATE(789)] = 34018, + [SMALL_STATE(790)] = 34043, + [SMALL_STATE(791)] = 34068, + [SMALL_STATE(792)] = 34093, + [SMALL_STATE(793)] = 34134, + [SMALL_STATE(794)] = 34165, + [SMALL_STATE(795)] = 34204, + [SMALL_STATE(796)] = 34229, + [SMALL_STATE(797)] = 34254, + [SMALL_STATE(798)] = 34279, + [SMALL_STATE(799)] = 34304, + [SMALL_STATE(800)] = 34329, + [SMALL_STATE(801)] = 34354, + [SMALL_STATE(802)] = 34391, + [SMALL_STATE(803)] = 34416, + [SMALL_STATE(804)] = 34441, + [SMALL_STATE(805)] = 34466, + [SMALL_STATE(806)] = 34491, + [SMALL_STATE(807)] = 34516, + [SMALL_STATE(808)] = 34541, + [SMALL_STATE(809)] = 34566, + [SMALL_STATE(810)] = 34591, + [SMALL_STATE(811)] = 34636, + [SMALL_STATE(812)] = 34677, + [SMALL_STATE(813)] = 34720, + [SMALL_STATE(814)] = 34759, + [SMALL_STATE(815)] = 34784, + [SMALL_STATE(816)] = 34818, + [SMALL_STATE(817)] = 34852, + [SMALL_STATE(818)] = 34886, + [SMALL_STATE(819)] = 34920, + [SMALL_STATE(820)] = 34954, + [SMALL_STATE(821)] = 34990, + [SMALL_STATE(822)] = 35016, + [SMALL_STATE(823)] = 35052, + [SMALL_STATE(824)] = 35086, + [SMALL_STATE(825)] = 35120, + [SMALL_STATE(826)] = 35154, + [SMALL_STATE(827)] = 35196, + [SMALL_STATE(828)] = 35230, + [SMALL_STATE(829)] = 35272, + [SMALL_STATE(830)] = 35306, + [SMALL_STATE(831)] = 35337, + [SMALL_STATE(832)] = 35358, + [SMALL_STATE(833)] = 35389, + [SMALL_STATE(834)] = 35410, + [SMALL_STATE(835)] = 35433, + [SMALL_STATE(836)] = 35454, + [SMALL_STATE(837)] = 35477, + [SMALL_STATE(838)] = 35508, + [SMALL_STATE(839)] = 35529, + [SMALL_STATE(840)] = 35560, + [SMALL_STATE(841)] = 35591, + [SMALL_STATE(842)] = 35614, + [SMALL_STATE(843)] = 35645, + [SMALL_STATE(844)] = 35676, + [SMALL_STATE(845)] = 35699, + [SMALL_STATE(846)] = 35734, + [SMALL_STATE(847)] = 35769, + [SMALL_STATE(848)] = 35804, + [SMALL_STATE(849)] = 35839, + [SMALL_STATE(850)] = 35865, + [SMALL_STATE(851)] = 35897, + [SMALL_STATE(852)] = 35929, + [SMALL_STATE(853)] = 35955, + [SMALL_STATE(854)] = 35987, + [SMALL_STATE(855)] = 36019, + [SMALL_STATE(856)] = 36045, + [SMALL_STATE(857)] = 36071, + [SMALL_STATE(858)] = 36103, + [SMALL_STATE(859)] = 36129, + [SMALL_STATE(860)] = 36155, + [SMALL_STATE(861)] = 36187, + [SMALL_STATE(862)] = 36213, + [SMALL_STATE(863)] = 36245, + [SMALL_STATE(864)] = 36271, + [SMALL_STATE(865)] = 36297, + [SMALL_STATE(866)] = 36329, + [SMALL_STATE(867)] = 36355, + [SMALL_STATE(868)] = 36384, + [SMALL_STATE(869)] = 36413, + [SMALL_STATE(870)] = 36442, + [SMALL_STATE(871)] = 36471, + [SMALL_STATE(872)] = 36494, + [SMALL_STATE(873)] = 36523, + [SMALL_STATE(874)] = 36552, + [SMALL_STATE(875)] = 36575, + [SMALL_STATE(876)] = 36598, + [SMALL_STATE(877)] = 36621, + [SMALL_STATE(878)] = 36644, + [SMALL_STATE(879)] = 36673, + [SMALL_STATE(880)] = 36702, + [SMALL_STATE(881)] = 36731, + [SMALL_STATE(882)] = 36760, + [SMALL_STATE(883)] = 36783, + [SMALL_STATE(884)] = 36812, + [SMALL_STATE(885)] = 36835, + [SMALL_STATE(886)] = 36864, + [SMALL_STATE(887)] = 36893, + [SMALL_STATE(888)] = 36922, + [SMALL_STATE(889)] = 36951, + [SMALL_STATE(890)] = 36980, + [SMALL_STATE(891)] = 37009, + [SMALL_STATE(892)] = 37038, + [SMALL_STATE(893)] = 37067, + [SMALL_STATE(894)] = 37096, + [SMALL_STATE(895)] = 37125, + [SMALL_STATE(896)] = 37148, + [SMALL_STATE(897)] = 37171, + [SMALL_STATE(898)] = 37194, + [SMALL_STATE(899)] = 37217, + [SMALL_STATE(900)] = 37236, + [SMALL_STATE(901)] = 37259, + [SMALL_STATE(902)] = 37280, + [SMALL_STATE(903)] = 37293, + [SMALL_STATE(904)] = 37314, + [SMALL_STATE(905)] = 37327, + [SMALL_STATE(906)] = 37346, + [SMALL_STATE(907)] = 37367, + [SMALL_STATE(908)] = 37380, + [SMALL_STATE(909)] = 37393, + [SMALL_STATE(910)] = 37416, + [SMALL_STATE(911)] = 37439, + [SMALL_STATE(912)] = 37452, + [SMALL_STATE(913)] = 37473, + [SMALL_STATE(914)] = 37494, + [SMALL_STATE(915)] = 37507, + [SMALL_STATE(916)] = 37530, + [SMALL_STATE(917)] = 37543, + [SMALL_STATE(918)] = 37556, + [SMALL_STATE(919)] = 37574, + [SMALL_STATE(920)] = 37594, + [SMALL_STATE(921)] = 37614, + [SMALL_STATE(922)] = 37626, + [SMALL_STATE(923)] = 37648, + [SMALL_STATE(924)] = 37662, + [SMALL_STATE(925)] = 37680, + [SMALL_STATE(926)] = 37698, + [SMALL_STATE(927)] = 37720, + [SMALL_STATE(928)] = 37738, + [SMALL_STATE(929)] = 37758, + [SMALL_STATE(930)] = 37770, + [SMALL_STATE(931)] = 37782, + [SMALL_STATE(932)] = 37804, + [SMALL_STATE(933)] = 37826, + [SMALL_STATE(934)] = 37844, + [SMALL_STATE(935)] = 37860, + [SMALL_STATE(936)] = 37878, + [SMALL_STATE(937)] = 37890, + [SMALL_STATE(938)] = 37902, + [SMALL_STATE(939)] = 37922, + [SMALL_STATE(940)] = 37944, + [SMALL_STATE(941)] = 37966, + [SMALL_STATE(942)] = 37988, + [SMALL_STATE(943)] = 38006, + [SMALL_STATE(944)] = 38028, + [SMALL_STATE(945)] = 38046, + [SMALL_STATE(946)] = 38058, + [SMALL_STATE(947)] = 38080, + [SMALL_STATE(948)] = 38098, + [SMALL_STATE(949)] = 38110, + [SMALL_STATE(950)] = 38132, + [SMALL_STATE(951)] = 38150, + [SMALL_STATE(952)] = 38164, + [SMALL_STATE(953)] = 38182, + [SMALL_STATE(954)] = 38194, + [SMALL_STATE(955)] = 38216, + [SMALL_STATE(956)] = 38238, + [SMALL_STATE(957)] = 38251, + [SMALL_STATE(958)] = 38264, + [SMALL_STATE(959)] = 38283, + [SMALL_STATE(960)] = 38302, + [SMALL_STATE(961)] = 38321, + [SMALL_STATE(962)] = 38340, + [SMALL_STATE(963)] = 38359, + [SMALL_STATE(964)] = 38378, + [SMALL_STATE(965)] = 38391, + [SMALL_STATE(966)] = 38410, + [SMALL_STATE(967)] = 38421, + [SMALL_STATE(968)] = 38440, + [SMALL_STATE(969)] = 38459, + [SMALL_STATE(970)] = 38478, + [SMALL_STATE(971)] = 38497, + [SMALL_STATE(972)] = 38516, + [SMALL_STATE(973)] = 38535, + [SMALL_STATE(974)] = 38548, + [SMALL_STATE(975)] = 38561, + [SMALL_STATE(976)] = 38574, + [SMALL_STATE(977)] = 38587, + [SMALL_STATE(978)] = 38600, + [SMALL_STATE(979)] = 38619, + [SMALL_STATE(980)] = 38632, + [SMALL_STATE(981)] = 38645, + [SMALL_STATE(982)] = 38660, + [SMALL_STATE(983)] = 38673, + [SMALL_STATE(984)] = 38684, + [SMALL_STATE(985)] = 38697, + [SMALL_STATE(986)] = 38708, + [SMALL_STATE(987)] = 38721, + [SMALL_STATE(988)] = 38734, + [SMALL_STATE(989)] = 38753, + [SMALL_STATE(990)] = 38772, + [SMALL_STATE(991)] = 38791, + [SMALL_STATE(992)] = 38804, + [SMALL_STATE(993)] = 38817, + [SMALL_STATE(994)] = 38830, + [SMALL_STATE(995)] = 38843, + [SMALL_STATE(996)] = 38862, + [SMALL_STATE(997)] = 38877, + [SMALL_STATE(998)] = 38893, + [SMALL_STATE(999)] = 38909, + [SMALL_STATE(1000)] = 38923, + [SMALL_STATE(1001)] = 38937, + [SMALL_STATE(1002)] = 38951, + [SMALL_STATE(1003)] = 38967, + [SMALL_STATE(1004)] = 38983, + [SMALL_STATE(1005)] = 38997, + [SMALL_STATE(1006)] = 39013, + [SMALL_STATE(1007)] = 39029, + [SMALL_STATE(1008)] = 39045, + [SMALL_STATE(1009)] = 39061, + [SMALL_STATE(1010)] = 39071, + [SMALL_STATE(1011)] = 39085, + [SMALL_STATE(1012)] = 39101, + [SMALL_STATE(1013)] = 39113, + [SMALL_STATE(1014)] = 39127, + [SMALL_STATE(1015)] = 39143, + [SMALL_STATE(1016)] = 39159, + [SMALL_STATE(1017)] = 39175, + [SMALL_STATE(1018)] = 39191, + [SMALL_STATE(1019)] = 39207, + [SMALL_STATE(1020)] = 39223, + [SMALL_STATE(1021)] = 39239, + [SMALL_STATE(1022)] = 39255, + [SMALL_STATE(1023)] = 39271, + [SMALL_STATE(1024)] = 39287, + [SMALL_STATE(1025)] = 39301, + [SMALL_STATE(1026)] = 39317, + [SMALL_STATE(1027)] = 39333, + [SMALL_STATE(1028)] = 39343, + [SMALL_STATE(1029)] = 39357, + [SMALL_STATE(1030)] = 39373, + [SMALL_STATE(1031)] = 39389, + [SMALL_STATE(1032)] = 39405, + [SMALL_STATE(1033)] = 39419, + [SMALL_STATE(1034)] = 39433, + [SMALL_STATE(1035)] = 39443, + [SMALL_STATE(1036)] = 39457, + [SMALL_STATE(1037)] = 39473, + [SMALL_STATE(1038)] = 39487, + [SMALL_STATE(1039)] = 39501, + [SMALL_STATE(1040)] = 39517, + [SMALL_STATE(1041)] = 39533, + [SMALL_STATE(1042)] = 39547, + [SMALL_STATE(1043)] = 39563, + [SMALL_STATE(1044)] = 39579, + [SMALL_STATE(1045)] = 39593, + [SMALL_STATE(1046)] = 39607, + [SMALL_STATE(1047)] = 39623, + [SMALL_STATE(1048)] = 39637, + [SMALL_STATE(1049)] = 39653, + [SMALL_STATE(1050)] = 39667, + [SMALL_STATE(1051)] = 39681, + [SMALL_STATE(1052)] = 39697, + [SMALL_STATE(1053)] = 39711, + [SMALL_STATE(1054)] = 39725, + [SMALL_STATE(1055)] = 39735, + [SMALL_STATE(1056)] = 39751, + [SMALL_STATE(1057)] = 39767, + [SMALL_STATE(1058)] = 39781, + [SMALL_STATE(1059)] = 39797, + [SMALL_STATE(1060)] = 39811, + [SMALL_STATE(1061)] = 39824, + [SMALL_STATE(1062)] = 39837, + [SMALL_STATE(1063)] = 39850, + [SMALL_STATE(1064)] = 39863, + [SMALL_STATE(1065)] = 39876, + [SMALL_STATE(1066)] = 39889, + [SMALL_STATE(1067)] = 39902, + [SMALL_STATE(1068)] = 39915, + [SMALL_STATE(1069)] = 39928, + [SMALL_STATE(1070)] = 39939, + [SMALL_STATE(1071)] = 39952, + [SMALL_STATE(1072)] = 39965, + [SMALL_STATE(1073)] = 39976, + [SMALL_STATE(1074)] = 39985, + [SMALL_STATE(1075)] = 39994, + [SMALL_STATE(1076)] = 40007, + [SMALL_STATE(1077)] = 40020, + [SMALL_STATE(1078)] = 40033, + [SMALL_STATE(1079)] = 40046, + [SMALL_STATE(1080)] = 40059, + [SMALL_STATE(1081)] = 40072, + [SMALL_STATE(1082)] = 40081, + [SMALL_STATE(1083)] = 40090, + [SMALL_STATE(1084)] = 40099, + [SMALL_STATE(1085)] = 40108, + [SMALL_STATE(1086)] = 40117, + [SMALL_STATE(1087)] = 40130, + [SMALL_STATE(1088)] = 40143, + [SMALL_STATE(1089)] = 40152, + [SMALL_STATE(1090)] = 40161, + [SMALL_STATE(1091)] = 40170, + [SMALL_STATE(1092)] = 40183, + [SMALL_STATE(1093)] = 40194, + [SMALL_STATE(1094)] = 40207, + [SMALL_STATE(1095)] = 40220, + [SMALL_STATE(1096)] = 40233, + [SMALL_STATE(1097)] = 40242, + [SMALL_STATE(1098)] = 40255, + [SMALL_STATE(1099)] = 40268, + [SMALL_STATE(1100)] = 40281, + [SMALL_STATE(1101)] = 40294, + [SMALL_STATE(1102)] = 40307, + [SMALL_STATE(1103)] = 40320, + [SMALL_STATE(1104)] = 40333, + [SMALL_STATE(1105)] = 40346, + [SMALL_STATE(1106)] = 40359, + [SMALL_STATE(1107)] = 40372, + [SMALL_STATE(1108)] = 40385, + [SMALL_STATE(1109)] = 40398, + [SMALL_STATE(1110)] = 40411, + [SMALL_STATE(1111)] = 40420, + [SMALL_STATE(1112)] = 40431, + [SMALL_STATE(1113)] = 40444, + [SMALL_STATE(1114)] = 40457, + [SMALL_STATE(1115)] = 40470, + [SMALL_STATE(1116)] = 40483, + [SMALL_STATE(1117)] = 40496, + [SMALL_STATE(1118)] = 40509, + [SMALL_STATE(1119)] = 40522, + [SMALL_STATE(1120)] = 40535, + [SMALL_STATE(1121)] = 40548, + [SMALL_STATE(1122)] = 40561, + [SMALL_STATE(1123)] = 40574, + [SMALL_STATE(1124)] = 40587, + [SMALL_STATE(1125)] = 40600, + [SMALL_STATE(1126)] = 40609, + [SMALL_STATE(1127)] = 40620, + [SMALL_STATE(1128)] = 40633, + [SMALL_STATE(1129)] = 40646, + [SMALL_STATE(1130)] = 40657, + [SMALL_STATE(1131)] = 40670, + [SMALL_STATE(1132)] = 40679, + [SMALL_STATE(1133)] = 40690, + [SMALL_STATE(1134)] = 40703, + [SMALL_STATE(1135)] = 40716, + [SMALL_STATE(1136)] = 40729, + [SMALL_STATE(1137)] = 40742, + [SMALL_STATE(1138)] = 40751, + [SMALL_STATE(1139)] = 40764, + [SMALL_STATE(1140)] = 40777, + [SMALL_STATE(1141)] = 40790, + [SMALL_STATE(1142)] = 40803, + [SMALL_STATE(1143)] = 40816, + [SMALL_STATE(1144)] = 40825, + [SMALL_STATE(1145)] = 40834, + [SMALL_STATE(1146)] = 40847, + [SMALL_STATE(1147)] = 40856, + [SMALL_STATE(1148)] = 40869, + [SMALL_STATE(1149)] = 40882, + [SMALL_STATE(1150)] = 40893, + [SMALL_STATE(1151)] = 40906, + [SMALL_STATE(1152)] = 40919, + [SMALL_STATE(1153)] = 40928, + [SMALL_STATE(1154)] = 40941, + [SMALL_STATE(1155)] = 40954, + [SMALL_STATE(1156)] = 40965, + [SMALL_STATE(1157)] = 40974, + [SMALL_STATE(1158)] = 40987, + [SMALL_STATE(1159)] = 40996, + [SMALL_STATE(1160)] = 41007, + [SMALL_STATE(1161)] = 41016, + [SMALL_STATE(1162)] = 41025, + [SMALL_STATE(1163)] = 41034, + [SMALL_STATE(1164)] = 41047, + [SMALL_STATE(1165)] = 41056, + [SMALL_STATE(1166)] = 41069, + [SMALL_STATE(1167)] = 41078, + [SMALL_STATE(1168)] = 41087, + [SMALL_STATE(1169)] = 41100, + [SMALL_STATE(1170)] = 41113, + [SMALL_STATE(1171)] = 41123, + [SMALL_STATE(1172)] = 41133, + [SMALL_STATE(1173)] = 41143, + [SMALL_STATE(1174)] = 41153, + [SMALL_STATE(1175)] = 41163, + [SMALL_STATE(1176)] = 41171, + [SMALL_STATE(1177)] = 41181, + [SMALL_STATE(1178)] = 41191, + [SMALL_STATE(1179)] = 41201, + [SMALL_STATE(1180)] = 41211, + [SMALL_STATE(1181)] = 41221, + [SMALL_STATE(1182)] = 41231, + [SMALL_STATE(1183)] = 41241, + [SMALL_STATE(1184)] = 41251, + [SMALL_STATE(1185)] = 41261, + [SMALL_STATE(1186)] = 41271, + [SMALL_STATE(1187)] = 41281, + [SMALL_STATE(1188)] = 41291, + [SMALL_STATE(1189)] = 41301, + [SMALL_STATE(1190)] = 41311, + [SMALL_STATE(1191)] = 41321, + [SMALL_STATE(1192)] = 41329, + [SMALL_STATE(1193)] = 41339, + [SMALL_STATE(1194)] = 41349, + [SMALL_STATE(1195)] = 41359, + [SMALL_STATE(1196)] = 41369, + [SMALL_STATE(1197)] = 41379, + [SMALL_STATE(1198)] = 41389, + [SMALL_STATE(1199)] = 41397, + [SMALL_STATE(1200)] = 41405, + [SMALL_STATE(1201)] = 41413, + [SMALL_STATE(1202)] = 41423, + [SMALL_STATE(1203)] = 41433, + [SMALL_STATE(1204)] = 41443, + [SMALL_STATE(1205)] = 41453, + [SMALL_STATE(1206)] = 41463, + [SMALL_STATE(1207)] = 41473, + [SMALL_STATE(1208)] = 41481, + [SMALL_STATE(1209)] = 41491, + [SMALL_STATE(1210)] = 41501, + [SMALL_STATE(1211)] = 41511, + [SMALL_STATE(1212)] = 41521, + [SMALL_STATE(1213)] = 41531, + [SMALL_STATE(1214)] = 41541, + [SMALL_STATE(1215)] = 41551, + [SMALL_STATE(1216)] = 41561, + [SMALL_STATE(1217)] = 41569, + [SMALL_STATE(1218)] = 41579, + [SMALL_STATE(1219)] = 41589, + [SMALL_STATE(1220)] = 41597, + [SMALL_STATE(1221)] = 41605, + [SMALL_STATE(1222)] = 41615, + [SMALL_STATE(1223)] = 41625, + [SMALL_STATE(1224)] = 41635, + [SMALL_STATE(1225)] = 41645, + [SMALL_STATE(1226)] = 41655, + [SMALL_STATE(1227)] = 41665, + [SMALL_STATE(1228)] = 41675, + [SMALL_STATE(1229)] = 41685, + [SMALL_STATE(1230)] = 41693, + [SMALL_STATE(1231)] = 41703, + [SMALL_STATE(1232)] = 41711, + [SMALL_STATE(1233)] = 41721, + [SMALL_STATE(1234)] = 41729, + [SMALL_STATE(1235)] = 41739, + [SMALL_STATE(1236)] = 41747, + [SMALL_STATE(1237)] = 41757, + [SMALL_STATE(1238)] = 41767, + [SMALL_STATE(1239)] = 41775, + [SMALL_STATE(1240)] = 41785, + [SMALL_STATE(1241)] = 41795, + [SMALL_STATE(1242)] = 41805, + [SMALL_STATE(1243)] = 41815, + [SMALL_STATE(1244)] = 41823, + [SMALL_STATE(1245)] = 41833, + [SMALL_STATE(1246)] = 41841, + [SMALL_STATE(1247)] = 41849, + [SMALL_STATE(1248)] = 41859, + [SMALL_STATE(1249)] = 41869, + [SMALL_STATE(1250)] = 41879, + [SMALL_STATE(1251)] = 41889, + [SMALL_STATE(1252)] = 41899, + [SMALL_STATE(1253)] = 41907, + [SMALL_STATE(1254)] = 41917, + [SMALL_STATE(1255)] = 41925, + [SMALL_STATE(1256)] = 41935, + [SMALL_STATE(1257)] = 41943, + [SMALL_STATE(1258)] = 41953, + [SMALL_STATE(1259)] = 41963, + [SMALL_STATE(1260)] = 41973, + [SMALL_STATE(1261)] = 41983, + [SMALL_STATE(1262)] = 41993, + [SMALL_STATE(1263)] = 42001, + [SMALL_STATE(1264)] = 42011, + [SMALL_STATE(1265)] = 42021, + [SMALL_STATE(1266)] = 42031, + [SMALL_STATE(1267)] = 42039, + [SMALL_STATE(1268)] = 42049, + [SMALL_STATE(1269)] = 42059, + [SMALL_STATE(1270)] = 42069, + [SMALL_STATE(1271)] = 42079, + [SMALL_STATE(1272)] = 42089, + [SMALL_STATE(1273)] = 42099, + [SMALL_STATE(1274)] = 42109, + [SMALL_STATE(1275)] = 42119, + [SMALL_STATE(1276)] = 42129, + [SMALL_STATE(1277)] = 42139, + [SMALL_STATE(1278)] = 42149, + [SMALL_STATE(1279)] = 42159, + [SMALL_STATE(1280)] = 42169, + [SMALL_STATE(1281)] = 42177, + [SMALL_STATE(1282)] = 42187, + [SMALL_STATE(1283)] = 42197, + [SMALL_STATE(1284)] = 42207, + [SMALL_STATE(1285)] = 42217, + [SMALL_STATE(1286)] = 42227, + [SMALL_STATE(1287)] = 42237, + [SMALL_STATE(1288)] = 42247, + [SMALL_STATE(1289)] = 42255, + [SMALL_STATE(1290)] = 42265, + [SMALL_STATE(1291)] = 42275, + [SMALL_STATE(1292)] = 42285, + [SMALL_STATE(1293)] = 42295, + [SMALL_STATE(1294)] = 42305, + [SMALL_STATE(1295)] = 42315, + [SMALL_STATE(1296)] = 42325, + [SMALL_STATE(1297)] = 42335, + [SMALL_STATE(1298)] = 42345, + [SMALL_STATE(1299)] = 42355, + [SMALL_STATE(1300)] = 42365, + [SMALL_STATE(1301)] = 42375, + [SMALL_STATE(1302)] = 42385, + [SMALL_STATE(1303)] = 42395, + [SMALL_STATE(1304)] = 42405, + [SMALL_STATE(1305)] = 42415, + [SMALL_STATE(1306)] = 42425, + [SMALL_STATE(1307)] = 42435, + [SMALL_STATE(1308)] = 42445, + [SMALL_STATE(1309)] = 42455, + [SMALL_STATE(1310)] = 42465, + [SMALL_STATE(1311)] = 42475, + [SMALL_STATE(1312)] = 42485, + [SMALL_STATE(1313)] = 42495, + [SMALL_STATE(1314)] = 42505, + [SMALL_STATE(1315)] = 42515, + [SMALL_STATE(1316)] = 42525, + [SMALL_STATE(1317)] = 42535, + [SMALL_STATE(1318)] = 42545, + [SMALL_STATE(1319)] = 42555, + [SMALL_STATE(1320)] = 42565, + [SMALL_STATE(1321)] = 42575, + [SMALL_STATE(1322)] = 42585, + [SMALL_STATE(1323)] = 42595, + [SMALL_STATE(1324)] = 42603, + [SMALL_STATE(1325)] = 42613, + [SMALL_STATE(1326)] = 42623, + [SMALL_STATE(1327)] = 42631, + [SMALL_STATE(1328)] = 42641, + [SMALL_STATE(1329)] = 42649, + [SMALL_STATE(1330)] = 42659, + [SMALL_STATE(1331)] = 42669, + [SMALL_STATE(1332)] = 42679, + [SMALL_STATE(1333)] = 42689, + [SMALL_STATE(1334)] = 42699, + [SMALL_STATE(1335)] = 42709, + [SMALL_STATE(1336)] = 42719, + [SMALL_STATE(1337)] = 42729, + [SMALL_STATE(1338)] = 42739, + [SMALL_STATE(1339)] = 42749, + [SMALL_STATE(1340)] = 42757, + [SMALL_STATE(1341)] = 42767, + [SMALL_STATE(1342)] = 42777, + [SMALL_STATE(1343)] = 42787, + [SMALL_STATE(1344)] = 42797, + [SMALL_STATE(1345)] = 42807, + [SMALL_STATE(1346)] = 42815, + [SMALL_STATE(1347)] = 42825, + [SMALL_STATE(1348)] = 42835, + [SMALL_STATE(1349)] = 42845, + [SMALL_STATE(1350)] = 42855, + [SMALL_STATE(1351)] = 42862, + [SMALL_STATE(1352)] = 42869, + [SMALL_STATE(1353)] = 42876, + [SMALL_STATE(1354)] = 42883, + [SMALL_STATE(1355)] = 42890, + [SMALL_STATE(1356)] = 42897, + [SMALL_STATE(1357)] = 42904, + [SMALL_STATE(1358)] = 42911, + [SMALL_STATE(1359)] = 42918, + [SMALL_STATE(1360)] = 42925, + [SMALL_STATE(1361)] = 42932, + [SMALL_STATE(1362)] = 42939, + [SMALL_STATE(1363)] = 42946, + [SMALL_STATE(1364)] = 42953, + [SMALL_STATE(1365)] = 42960, + [SMALL_STATE(1366)] = 42967, + [SMALL_STATE(1367)] = 42974, + [SMALL_STATE(1368)] = 42981, + [SMALL_STATE(1369)] = 42988, + [SMALL_STATE(1370)] = 42995, + [SMALL_STATE(1371)] = 43002, + [SMALL_STATE(1372)] = 43009, + [SMALL_STATE(1373)] = 43016, + [SMALL_STATE(1374)] = 43023, + [SMALL_STATE(1375)] = 43030, + [SMALL_STATE(1376)] = 43037, + [SMALL_STATE(1377)] = 43044, + [SMALL_STATE(1378)] = 43051, + [SMALL_STATE(1379)] = 43058, + [SMALL_STATE(1380)] = 43065, + [SMALL_STATE(1381)] = 43072, + [SMALL_STATE(1382)] = 43079, + [SMALL_STATE(1383)] = 43086, + [SMALL_STATE(1384)] = 43093, + [SMALL_STATE(1385)] = 43100, + [SMALL_STATE(1386)] = 43107, + [SMALL_STATE(1387)] = 43114, + [SMALL_STATE(1388)] = 43121, + [SMALL_STATE(1389)] = 43128, + [SMALL_STATE(1390)] = 43135, + [SMALL_STATE(1391)] = 43142, + [SMALL_STATE(1392)] = 43149, + [SMALL_STATE(1393)] = 43156, + [SMALL_STATE(1394)] = 43163, + [SMALL_STATE(1395)] = 43170, + [SMALL_STATE(1396)] = 43177, + [SMALL_STATE(1397)] = 43184, + [SMALL_STATE(1398)] = 43191, + [SMALL_STATE(1399)] = 43198, + [SMALL_STATE(1400)] = 43205, + [SMALL_STATE(1401)] = 43212, + [SMALL_STATE(1402)] = 43219, + [SMALL_STATE(1403)] = 43226, + [SMALL_STATE(1404)] = 43233, + [SMALL_STATE(1405)] = 43240, + [SMALL_STATE(1406)] = 43247, + [SMALL_STATE(1407)] = 43254, + [SMALL_STATE(1408)] = 43261, + [SMALL_STATE(1409)] = 43268, + [SMALL_STATE(1410)] = 43275, + [SMALL_STATE(1411)] = 43282, + [SMALL_STATE(1412)] = 43289, + [SMALL_STATE(1413)] = 43296, + [SMALL_STATE(1414)] = 43303, + [SMALL_STATE(1415)] = 43310, + [SMALL_STATE(1416)] = 43317, + [SMALL_STATE(1417)] = 43324, + [SMALL_STATE(1418)] = 43331, + [SMALL_STATE(1419)] = 43338, + [SMALL_STATE(1420)] = 43345, + [SMALL_STATE(1421)] = 43352, + [SMALL_STATE(1422)] = 43359, + [SMALL_STATE(1423)] = 43366, + [SMALL_STATE(1424)] = 43373, + [SMALL_STATE(1425)] = 43380, + [SMALL_STATE(1426)] = 43387, + [SMALL_STATE(1427)] = 43394, + [SMALL_STATE(1428)] = 43401, + [SMALL_STATE(1429)] = 43408, + [SMALL_STATE(1430)] = 43415, + [SMALL_STATE(1431)] = 43422, + [SMALL_STATE(1432)] = 43429, + [SMALL_STATE(1433)] = 43436, + [SMALL_STATE(1434)] = 43443, + [SMALL_STATE(1435)] = 43450, + [SMALL_STATE(1436)] = 43457, + [SMALL_STATE(1437)] = 43464, + [SMALL_STATE(1438)] = 43471, + [SMALL_STATE(1439)] = 43478, + [SMALL_STATE(1440)] = 43485, + [SMALL_STATE(1441)] = 43492, + [SMALL_STATE(1442)] = 43499, + [SMALL_STATE(1443)] = 43506, + [SMALL_STATE(1444)] = 43513, + [SMALL_STATE(1445)] = 43520, + [SMALL_STATE(1446)] = 43527, + [SMALL_STATE(1447)] = 43534, + [SMALL_STATE(1448)] = 43541, + [SMALL_STATE(1449)] = 43548, + [SMALL_STATE(1450)] = 43555, + [SMALL_STATE(1451)] = 43562, + [SMALL_STATE(1452)] = 43569, + [SMALL_STATE(1453)] = 43576, + [SMALL_STATE(1454)] = 43583, + [SMALL_STATE(1455)] = 43590, + [SMALL_STATE(1456)] = 43597, + [SMALL_STATE(1457)] = 43604, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -59835,1367 +65451,1420 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(355), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(198), - [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(389), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(830), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(844), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1130), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1141), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1018), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(77), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(136), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1202), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(42), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1212), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1215), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1024), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1027), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1233), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(87), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(127), - [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(239), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(45), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(69), - [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(889), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1309), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(905), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(221), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(979), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(118), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(155), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(155), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(159), - [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(162), - [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(981), - [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(937), - [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(850), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(575), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(575), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(545), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1037), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(359), - [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), - [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), - [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 55), - [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 55), - [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 55), - [278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 55), - [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 72), - [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 72), - [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 72), - [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 72), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 84), - [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 84), - [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 84), - [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 84), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 75), - [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 75), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 75), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 75), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 34), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 34), - [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 34), - [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 34), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 89), - [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 89), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 89), - [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 89), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 67), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 67), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 67), - [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 67), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 84), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 84), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 84), - [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 84), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, .production_id = 65), - [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, .production_id = 65), - [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 95), - [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 95), - [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 95), - [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 95), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), - [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(41), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(774), - [728] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(741), - [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(135), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(741), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 6), - [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 6), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(176), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(123), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 25), - [799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 25), - [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 6), - [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 6), - [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 99), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 99), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 21), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 21), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 57), - [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 57), - [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 28), - [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 28), - [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4), - [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4), - [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 48), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 48), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 6), - [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 6), - [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 58), - [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 58), - [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 34), - [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 34), - [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 74), - [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 74), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 3), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 3), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 14), - [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 14), - [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 48), - [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 48), - [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 19), - [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 19), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 79), - [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 79), - [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 67), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 67), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 72), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 72), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 49), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 49), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 56), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 56), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 24), - [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 24), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 28), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 28), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 88), - [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 88), - [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 75), - [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 75), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 46), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 46), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 22), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 22), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 93), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 93), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 84), - [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 84), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 84), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 84), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 89), - [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 89), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 27), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 27), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 98), - [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 98), - [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 95), - [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 95), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 23), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 23), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 13), - [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 13), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 26), - [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 26), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 4), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 41), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 41), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 85), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 85), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 73), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 73), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 42), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 42), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(189), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(129), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 92), - [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 92), - [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 91), - [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 91), - [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 97), - [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 97), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 40), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 40), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 17), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 17), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 17), REDUCE(sym_object_pattern, 3, .production_id = 18), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 18), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 45), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 71), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 7), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 7), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 86), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 70), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 38), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 16), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 15), - [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 38), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 39), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 38), - [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 68), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 31), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 31), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 69), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 69), - [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 70), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 68), - [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 76), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 76), - [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 61), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 61), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 29), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 29), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 69), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 69), - [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 17), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 17), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 11), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 11), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 47), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 47), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 59), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 59), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 35), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 35), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 87), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 87), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 45), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 36), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 36), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 37), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 37), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 71), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 44), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 44), - [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 51), REDUCE(sym_assignment_expression, 3, .production_id = 15), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 51), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 39), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 83), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 83), - [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 51), REDUCE(sym_assignment_expression, 3, .production_id = 38), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 43), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 43), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 38), REDUCE(sym_assignment_expression, 3, .production_id = 38), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 38), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 16), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 6), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 6), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 38), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 17), REDUCE(sym_object_pattern, 3, .production_id = 18), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 18), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 55), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 52), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(982), - [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(776), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), - [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(138), - [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(702), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(981), - [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(937), - [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(871), - [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(1037), - [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(699), - [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(712), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 95), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 95), - [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 100), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 100), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 41), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 41), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 96), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 96), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 53), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 53), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 78), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 78), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 72), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 72), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), - [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), SHIFT_REPEAT(1037), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 84), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 84), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 90), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 90), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 32), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 32), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 32), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 32), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 10), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 10), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 60), SHIFT_REPEAT(833), - [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 60), SHIFT_REPEAT(83), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 60), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 60), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 60), SHIFT_REPEAT(833), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(86), - [2016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(893), - [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(816), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 18), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 62), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 81), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1374), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(109), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, .production_id = 33), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 64), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(874), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(121), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(54), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(405), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(240), + [193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(434), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(912), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(903), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1244), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1173), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1064), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(95), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1176), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(44), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1196), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1197), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1069), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1072), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1207), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(105), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(153), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(284), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(61), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(87), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(962), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1444), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(963), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(258), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1046), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(149), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(157), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(157), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(160), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(162), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1045), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1044), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(935), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(645), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(645), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(588), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1076), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(394), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 55), + [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 55), + [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), + [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), + [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 55), + [386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 55), + [388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), + [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(147), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(166), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), + [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), + [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), + [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), + [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), + [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), + [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 84), + [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 84), + [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 84), + [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 84), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 34), + [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 34), + [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 34), + [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 34), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 95), + [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 95), + [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 95), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 95), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, .production_id = 65), + [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, .production_id = 65), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 89), + [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 89), + [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 89), + [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 89), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), + [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), + [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 67), + [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 67), + [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 67), + [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 67), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 84), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 84), + [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 84), + [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 84), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 75), + [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 75), + [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 75), + [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 75), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 72), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 72), + [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 72), + [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 72), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(840), + [799] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(786), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(233), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(786), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 6), + [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 6), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 25), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 25), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 99), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 99), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 21), + [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 21), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 6), + [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 6), + [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 48), + [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 48), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 23), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 23), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 57), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 57), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 84), + [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 84), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 67), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 67), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 89), + [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 89), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 72), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 72), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 6), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 6), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 84), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 84), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 88), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 88), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 19), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 19), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 93), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 93), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 58), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 58), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 22), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 22), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 34), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 34), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 13), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 13), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 48), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 48), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 75), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 75), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 3), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 3), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 56), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 56), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 49), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 49), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 46), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 46), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 95), + [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 95), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 14), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 14), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 98), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 98), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 24), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 24), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 79), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 79), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 26), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 26), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 27), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 27), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 28), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 28), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 28), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 28), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 74), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 74), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 4), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 85), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 85), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 41), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 41), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 42), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 42), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 73), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 73), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(119), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(188), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 91), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 91), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 92), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 92), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 97), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 97), + [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 40), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 40), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 7), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 7), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 68), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 38), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 45), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 86), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 38), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 71), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 38), + [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 31), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 31), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 15), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 39), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 17), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 17), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 17), REDUCE(sym_object_pattern, 3, .production_id = 18), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 18), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 16), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 70), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 36), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 36), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 6), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 6), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 38), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 37), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 37), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 76), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 76), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 51), REDUCE(sym_assignment_expression, 3, .production_id = 15), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 51), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), + [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 51), REDUCE(sym_assignment_expression, 3, .production_id = 38), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 39), + [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 38), REDUCE(sym_assignment_expression, 3, .production_id = 38), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 38), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 16), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 35), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 35), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 69), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 69), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 11), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 11), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 71), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 17), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 17), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 43), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 43), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 44), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 44), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 70), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 45), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 69), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 69), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 47), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 47), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 87), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 87), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 68), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 83), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 83), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 59), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 59), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 29), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 29), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 61), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 61), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 55), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), + [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 17), REDUCE(sym_object_pattern, 3, .production_id = 18), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 18), + [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 52), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(1034), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(837), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), + [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(235), + [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(768), + [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(1045), + [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(1044), + [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(938), + [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(1076), + [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(766), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 66), SHIFT_REPEAT(771), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 72), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 72), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 95), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 95), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 96), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 96), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), + [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), SHIFT_REPEAT(1076), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 90), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 90), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 41), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 41), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 100), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 100), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 53), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 53), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 84), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 84), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 78), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 78), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 32), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 32), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 32), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 32), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 10), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 10), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(103), + [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(961), + [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(876), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 60), SHIFT_REPEAT(899), + [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 60), SHIFT_REPEAT(100), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 60), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 60), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 60), SHIFT_REPEAT(899), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 18), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 62), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 64), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 30), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 30), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(189), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(933), - [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(934), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(832), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(79), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 52), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(758), - [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 59), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 50), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(1188), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(666), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(665), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, .production_id = 50), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 20), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 50), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(1172), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(717), - [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 29), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, .production_id = 94), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 80), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 19), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 63), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 82), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 77), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 50), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 54), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 54), - [2687] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 54), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 54), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1408), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(125), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 81), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, .production_id = 33), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(944), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), + [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(131), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 30), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 30), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), + [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(188), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(96), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(913), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1052), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), + [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(1053), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(1258), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(733), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), + [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(732), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 20), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(783), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 29), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, .production_id = 50), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 52), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 50), + [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(820), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 59), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 50), + [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(1241), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 54), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 77), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 50), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 63), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 80), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 82), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, .production_id = 94), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 19), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 54), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 54), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2909] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 54), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), }; #ifdef __cplusplus