From baf095fa2dea66c20a74c8b90b9292d8a97535de Mon Sep 17 00:00:00 2001 From: jackschu Date: Sun, 7 Jul 2024 17:55:52 -0400 Subject: [PATCH] expand meta_property to include import.meta --- grammar.js | 3 +- src/grammar.json | 50 +- src/node-types.json | 4 + src/parser.c | 81239 ++++++++++++++++++----------------- test/corpus/statements.txt | 4 +- 5 files changed, 40696 insertions(+), 40604 deletions(-) diff --git a/grammar.js b/grammar.js index d96d9e4c..d3dec9ca 100644 --- a/grammar.js +++ b/grammar.js @@ -80,6 +80,7 @@ module.exports = grammar({ ['member', 'new', 'call', $.expression], ['declaration', 'literal'], [$.primary_expression, $.statement_block, 'object'], + [$.meta_property, $.import], [$.import_statement, $.import], [$.export_statement, $.primary_expression], [$.lexical_declaration, $.primary_expression], @@ -1100,7 +1101,7 @@ module.exports = grammar({ return token(seq('#', alpha, repeat(alphanumeric))); }, - meta_property: _ => seq('new', '.', 'target'), + meta_property: _ => choice(seq('new', '.', 'target'), seq('import', '.', 'meta')), this: _ => 'this', super: _ => 'super', diff --git a/src/grammar.json b/src/grammar.json index 2a892d9c..951dcf01 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -5839,19 +5839,41 @@ } }, "meta_property": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "new" - }, - { - "type": "STRING", - "value": "." + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "new" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "target" + } + ] }, { - "type": "STRING", - "value": "target" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "import" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "meta" + } + ] } ] }, @@ -6828,6 +6850,16 @@ "value": "object" } ], + [ + { + "type": "SYMBOL", + "name": "meta_property" + }, + { + "type": "SYMBOL", + "name": "import" + } + ], [ { "type": "SYMBOL", diff --git a/src/node-types.json b/src/node-types.json index a5312d58..70c497d7 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -3439,6 +3439,10 @@ "type": "let", "named": false }, + { + "type": "meta", + "named": false + }, { "type": "new", "named": false diff --git a/src/parser.c b/src/parser.c index 9fbefb5c..0cbb1dca 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,11 +13,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1694 +#define STATE_COUNT 1697 #define LARGE_STATE_COUNT 311 -#define SYMBOL_COUNT 265 +#define SYMBOL_COUNT 266 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 136 +#define TOKEN_COUNT 137 #define EXTERNAL_TOKEN_COUNT 7 #define FIELD_COUNT 38 #define MAX_ALIAS_SEQUENCE_LENGTH 7 @@ -144,154 +144,155 @@ enum ts_symbol_identifiers { sym_number = 118, sym_private_property_identifier = 119, anon_sym_target = 120, - sym_this = 121, - sym_super = 122, - sym_true = 123, - sym_false = 124, - sym_null = 125, - sym_undefined = 126, - anon_sym_AT = 127, - anon_sym_static = 128, - aux_sym_method_definition_token1 = 129, - anon_sym_get = 130, - anon_sym_set = 131, - sym__automatic_semicolon = 132, - sym__template_chars = 133, - sym__ternary_qmark = 134, - sym_html_comment = 135, - sym_program = 136, - sym_export_statement = 137, - sym_namespace_export = 138, - sym_export_clause = 139, - sym_export_specifier = 140, - sym__module_export_name = 141, - sym_declaration = 142, - sym_import = 143, - sym_import_statement = 144, - sym_import_clause = 145, - sym__from_clause = 146, - sym_namespace_import = 147, - sym_named_imports = 148, - sym_import_specifier = 149, - sym_import_attribute = 150, - sym_statement = 151, - sym_expression_statement = 152, - sym_variable_declaration = 153, - sym_lexical_declaration = 154, - sym_variable_declarator = 155, - sym_statement_block = 156, - sym_else_clause = 157, - sym_if_statement = 158, - sym_switch_statement = 159, - sym_for_statement = 160, - sym_for_in_statement = 161, - sym__for_header = 162, - sym_while_statement = 163, - sym_do_statement = 164, - sym_try_statement = 165, - sym_with_statement = 166, - sym_break_statement = 167, - sym_continue_statement = 168, - sym_debugger_statement = 169, - sym_return_statement = 170, - sym_throw_statement = 171, - sym_empty_statement = 172, - sym_labeled_statement = 173, - sym_switch_body = 174, - sym_switch_case = 175, - sym_switch_default = 176, - sym_catch_clause = 177, - sym_finally_clause = 178, - sym_parenthesized_expression = 179, - sym_expression = 180, - sym_primary_expression = 181, - sym_yield_expression = 182, - sym_object = 183, - sym_object_pattern = 184, - sym_assignment_pattern = 185, - sym_object_assignment_pattern = 186, - sym_array = 187, - sym_array_pattern = 188, - sym_glimmer_template = 189, - sym_jsx_element = 190, - sym_jsx_text = 191, - sym_jsx_expression = 192, - sym_jsx_opening_element = 193, - sym_nested_identifier = 194, - sym_jsx_namespace_name = 195, - sym_jsx_closing_element = 196, - sym_jsx_self_closing_element = 197, - sym_jsx_attribute = 198, - sym__jsx_string = 199, - sym_class = 200, - sym_class_declaration = 201, - sym_class_heritage = 202, - sym_function_expression = 203, - sym_function_declaration = 204, - sym_generator_function = 205, - sym_generator_function_declaration = 206, - sym_arrow_function = 207, - sym_call_expression = 208, - sym_new_expression = 209, - sym_await_expression = 210, - sym_member_expression = 211, - sym_subscript_expression = 212, - sym_assignment_expression = 213, - sym__augmented_assignment_lhs = 214, - sym_augmented_assignment_expression = 215, - sym__initializer = 216, - sym__destructuring_pattern = 217, - sym_spread_element = 218, - sym_ternary_expression = 219, - sym_binary_expression = 220, - sym_unary_expression = 221, - sym_update_expression = 222, - sym_sequence_expression = 223, - sym_string = 224, - sym_template_string = 225, - sym_template_substitution = 226, - sym_regex = 227, - sym_meta_property = 228, - sym_arguments = 229, - sym_decorator = 230, - sym_decorator_member_expression = 231, - sym_decorator_call_expression = 232, - sym_class_body = 233, - sym_field_definition = 234, - sym_formal_parameters = 235, - sym_class_static_block = 236, - sym_pattern = 237, - sym_rest_pattern = 238, - sym_method_definition = 239, - sym_pair = 240, - sym_pair_pattern = 241, - sym__property_name = 242, - sym_computed_property_name = 243, - aux_sym_program_repeat1 = 244, - aux_sym_export_statement_repeat1 = 245, - aux_sym_export_clause_repeat1 = 246, - aux_sym_named_imports_repeat1 = 247, - aux_sym_variable_declaration_repeat1 = 248, - aux_sym_switch_body_repeat1 = 249, - aux_sym_object_repeat1 = 250, - aux_sym_object_pattern_repeat1 = 251, - aux_sym_array_repeat1 = 252, - aux_sym_array_pattern_repeat1 = 253, - aux_sym_glimmer_template_repeat1 = 254, - aux_sym_jsx_element_repeat1 = 255, - aux_sym_jsx_opening_element_repeat1 = 256, - aux_sym__jsx_string_repeat1 = 257, - aux_sym__jsx_string_repeat2 = 258, - aux_sym_sequence_expression_repeat1 = 259, - aux_sym_string_repeat1 = 260, - aux_sym_string_repeat2 = 261, - aux_sym_template_string_repeat1 = 262, - aux_sym_class_body_repeat1 = 263, - aux_sym_formal_parameters_repeat1 = 264, - alias_sym_property_identifier = 265, - alias_sym_shorthand_property_identifier = 266, - alias_sym_shorthand_property_identifier_pattern = 267, - alias_sym_statement_identifier = 268, + anon_sym_meta = 121, + sym_this = 122, + sym_super = 123, + sym_true = 124, + sym_false = 125, + sym_null = 126, + sym_undefined = 127, + anon_sym_AT = 128, + anon_sym_static = 129, + aux_sym_method_definition_token1 = 130, + anon_sym_get = 131, + anon_sym_set = 132, + sym__automatic_semicolon = 133, + sym__template_chars = 134, + sym__ternary_qmark = 135, + sym_html_comment = 136, + sym_program = 137, + sym_export_statement = 138, + sym_namespace_export = 139, + sym_export_clause = 140, + sym_export_specifier = 141, + sym__module_export_name = 142, + sym_declaration = 143, + sym_import = 144, + sym_import_statement = 145, + sym_import_clause = 146, + sym__from_clause = 147, + sym_namespace_import = 148, + sym_named_imports = 149, + sym_import_specifier = 150, + sym_import_attribute = 151, + sym_statement = 152, + sym_expression_statement = 153, + sym_variable_declaration = 154, + sym_lexical_declaration = 155, + sym_variable_declarator = 156, + sym_statement_block = 157, + sym_else_clause = 158, + sym_if_statement = 159, + sym_switch_statement = 160, + sym_for_statement = 161, + sym_for_in_statement = 162, + sym__for_header = 163, + sym_while_statement = 164, + sym_do_statement = 165, + sym_try_statement = 166, + sym_with_statement = 167, + sym_break_statement = 168, + sym_continue_statement = 169, + sym_debugger_statement = 170, + sym_return_statement = 171, + sym_throw_statement = 172, + sym_empty_statement = 173, + sym_labeled_statement = 174, + sym_switch_body = 175, + sym_switch_case = 176, + sym_switch_default = 177, + sym_catch_clause = 178, + sym_finally_clause = 179, + sym_parenthesized_expression = 180, + sym_expression = 181, + sym_primary_expression = 182, + sym_yield_expression = 183, + sym_object = 184, + sym_object_pattern = 185, + sym_assignment_pattern = 186, + sym_object_assignment_pattern = 187, + sym_array = 188, + sym_array_pattern = 189, + sym_glimmer_template = 190, + sym_jsx_element = 191, + sym_jsx_text = 192, + sym_jsx_expression = 193, + sym_jsx_opening_element = 194, + sym_nested_identifier = 195, + sym_jsx_namespace_name = 196, + sym_jsx_closing_element = 197, + sym_jsx_self_closing_element = 198, + sym_jsx_attribute = 199, + sym__jsx_string = 200, + sym_class = 201, + sym_class_declaration = 202, + sym_class_heritage = 203, + sym_function_expression = 204, + sym_function_declaration = 205, + sym_generator_function = 206, + sym_generator_function_declaration = 207, + sym_arrow_function = 208, + sym_call_expression = 209, + sym_new_expression = 210, + sym_await_expression = 211, + sym_member_expression = 212, + sym_subscript_expression = 213, + sym_assignment_expression = 214, + sym__augmented_assignment_lhs = 215, + sym_augmented_assignment_expression = 216, + sym__initializer = 217, + sym__destructuring_pattern = 218, + sym_spread_element = 219, + sym_ternary_expression = 220, + sym_binary_expression = 221, + sym_unary_expression = 222, + sym_update_expression = 223, + sym_sequence_expression = 224, + sym_string = 225, + sym_template_string = 226, + sym_template_substitution = 227, + sym_regex = 228, + sym_meta_property = 229, + sym_arguments = 230, + sym_decorator = 231, + sym_decorator_member_expression = 232, + sym_decorator_call_expression = 233, + sym_class_body = 234, + sym_field_definition = 235, + sym_formal_parameters = 236, + sym_class_static_block = 237, + sym_pattern = 238, + sym_rest_pattern = 239, + sym_method_definition = 240, + sym_pair = 241, + sym_pair_pattern = 242, + sym__property_name = 243, + sym_computed_property_name = 244, + aux_sym_program_repeat1 = 245, + aux_sym_export_statement_repeat1 = 246, + aux_sym_export_clause_repeat1 = 247, + aux_sym_named_imports_repeat1 = 248, + aux_sym_variable_declaration_repeat1 = 249, + aux_sym_switch_body_repeat1 = 250, + aux_sym_object_repeat1 = 251, + aux_sym_object_pattern_repeat1 = 252, + aux_sym_array_repeat1 = 253, + aux_sym_array_pattern_repeat1 = 254, + aux_sym_glimmer_template_repeat1 = 255, + aux_sym_jsx_element_repeat1 = 256, + aux_sym_jsx_opening_element_repeat1 = 257, + aux_sym__jsx_string_repeat1 = 258, + aux_sym__jsx_string_repeat2 = 259, + aux_sym_sequence_expression_repeat1 = 260, + aux_sym_string_repeat1 = 261, + aux_sym_string_repeat2 = 262, + aux_sym_template_string_repeat1 = 263, + aux_sym_class_body_repeat1 = 264, + aux_sym_formal_parameters_repeat1 = 265, + alias_sym_property_identifier = 266, + alias_sym_shorthand_property_identifier = 267, + alias_sym_shorthand_property_identifier_pattern = 268, + alias_sym_statement_identifier = 269, }; static const char * const ts_symbol_names[] = { @@ -416,6 +417,7 @@ static const char * const ts_symbol_names[] = { [sym_number] = "number", [sym_private_property_identifier] = "private_property_identifier", [anon_sym_target] = "target", + [anon_sym_meta] = "meta", [sym_this] = "this", [sym_super] = "super", [sym_true] = "true", @@ -688,6 +690,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_number] = sym_number, [sym_private_property_identifier] = sym_private_property_identifier, [anon_sym_target] = anon_sym_target, + [anon_sym_meta] = anon_sym_meta, [sym_this] = sym_this, [sym_super] = sym_super, [sym_true] = sym_true, @@ -1323,6 +1326,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_meta] = { + .visible = true, + .named = false, + }, [sym_this] = { .visible = true, .named = true, @@ -2478,38 +2485,38 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [11] = 11, [12] = 12, [13] = 12, - [14] = 14, + [14] = 12, [15] = 15, [16] = 16, - [17] = 12, - [18] = 14, - [19] = 19, - [20] = 12, - [21] = 14, + [17] = 17, + [18] = 17, + [19] = 17, + [20] = 17, + [21] = 12, [22] = 12, - [23] = 14, - [24] = 12, - [25] = 14, - [26] = 14, + [23] = 17, + [24] = 24, + [25] = 17, + [26] = 12, [27] = 27, [28] = 28, - [29] = 27, + [29] = 29, [30] = 30, [31] = 31, [32] = 32, - [33] = 28, - [34] = 34, - [35] = 30, + [33] = 31, + [34] = 30, + [35] = 32, [36] = 36, - [37] = 32, - [38] = 34, + [37] = 37, + [38] = 29, [39] = 39, - [40] = 39, - [41] = 31, - [42] = 42, - [43] = 43, - [44] = 36, - [45] = 42, + [40] = 40, + [41] = 36, + [42] = 40, + [43] = 39, + [44] = 37, + [45] = 27, [46] = 46, [47] = 46, [48] = 46, @@ -2518,108 +2525,108 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [51] = 51, [52] = 52, [53] = 53, - [54] = 54, + [54] = 53, [55] = 55, [56] = 56, [57] = 57, [58] = 58, [59] = 59, - [60] = 60, - [61] = 57, - [62] = 57, + [60] = 53, + [61] = 61, + [62] = 53, [63] = 63, - [64] = 64, - [65] = 57, - [66] = 57, + [64] = 53, + [65] = 65, + [66] = 66, [67] = 67, - [68] = 68, - [69] = 57, + [68] = 53, + [69] = 53, [70] = 70, - [71] = 57, + [71] = 71, [72] = 72, [73] = 73, [74] = 74, - [75] = 74, - [76] = 76, - [77] = 76, - [78] = 78, - [79] = 78, + [75] = 75, + [76] = 74, + [77] = 77, + [78] = 75, + [79] = 77, [80] = 80, [81] = 81, [82] = 82, - [83] = 81, + [83] = 82, [84] = 84, - [85] = 85, - [86] = 84, + [85] = 84, + [86] = 86, [87] = 87, [88] = 88, - [89] = 87, + [89] = 89, [90] = 90, - [91] = 91, - [92] = 87, + [91] = 88, + [92] = 88, [93] = 93, [94] = 94, [95] = 95, [96] = 96, - [97] = 95, - [98] = 98, - [99] = 99, - [100] = 99, + [97] = 97, + [98] = 97, + [99] = 95, + [100] = 100, [101] = 101, [102] = 102, - [103] = 102, - [104] = 104, + [103] = 103, + [104] = 102, [105] = 105, [106] = 106, - [107] = 106, + [107] = 107, [108] = 108, [109] = 109, [110] = 110, - [111] = 105, - [112] = 112, + [111] = 111, + [112] = 105, [113] = 113, [114] = 114, - [115] = 108, - [116] = 116, - [117] = 117, - [118] = 118, - [119] = 119, - [120] = 106, + [115] = 115, + [116] = 113, + [117] = 114, + [118] = 109, + [119] = 108, + [120] = 110, [121] = 108, - [122] = 109, - [123] = 110, - [124] = 105, - [125] = 112, - [126] = 105, - [127] = 117, - [128] = 109, - [129] = 129, - [130] = 112, - [131] = 131, - [132] = 106, - [133] = 131, - [134] = 108, - [135] = 118, - [136] = 109, + [122] = 107, + [123] = 123, + [124] = 124, + [125] = 114, + [126] = 126, + [127] = 127, + [128] = 110, + [129] = 123, + [130] = 130, + [131] = 109, + [132] = 115, + [133] = 133, + [134] = 105, + [135] = 108, + [136] = 108, [137] = 110, - [138] = 105, - [139] = 112, - [140] = 140, - [141] = 141, - [142] = 142, - [143] = 140, - [144] = 117, - [145] = 110, - [146] = 106, - [147] = 108, - [148] = 109, - [149] = 110, - [150] = 150, - [151] = 112, - [152] = 117, - [153] = 117, + [138] = 109, + [139] = 139, + [140] = 113, + [141] = 115, + [142] = 114, + [143] = 105, + [144] = 113, + [145] = 106, + [146] = 105, + [147] = 109, + [148] = 114, + [149] = 113, + [150] = 110, + [151] = 115, + [152] = 152, + [153] = 115, [154] = 154, - [155] = 154, + [155] = 155, [156] = 156, [157] = 157, [158] = 158, @@ -2629,179 +2636,179 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [162] = 162, [163] = 163, [164] = 164, - [165] = 165, - [166] = 166, + [165] = 162, + [166] = 154, [167] = 167, - [168] = 166, - [169] = 169, + [168] = 168, + [169] = 164, [170] = 170, [171] = 171, [172] = 172, [173] = 173, [174] = 174, - [175] = 175, + [175] = 170, [176] = 176, [177] = 177, [178] = 178, - [179] = 179, - [180] = 154, - [181] = 156, - [182] = 163, - [183] = 157, - [184] = 158, - [185] = 159, - [186] = 160, - [187] = 161, + [179] = 167, + [180] = 161, + [181] = 157, + [182] = 182, + [183] = 171, + [184] = 173, + [185] = 160, + [186] = 154, + [187] = 174, [188] = 188, - [189] = 164, - [190] = 190, - [191] = 191, - [192] = 170, - [193] = 172, - [194] = 171, - [195] = 174, - [196] = 177, - [197] = 178, - [198] = 179, - [199] = 156, - [200] = 157, - [201] = 158, - [202] = 159, - [203] = 160, - [204] = 161, - [205] = 205, - [206] = 190, - [207] = 166, - [208] = 172, - [209] = 205, - [210] = 210, - [211] = 211, - [212] = 212, - [213] = 213, - [214] = 214, - [215] = 215, - [216] = 188, - [217] = 163, - [218] = 164, - [219] = 190, - [220] = 220, - [221] = 191, - [222] = 170, - [223] = 171, - [224] = 173, - [225] = 174, - [226] = 177, - [227] = 178, - [228] = 179, - [229] = 154, - [230] = 156, - [231] = 157, - [232] = 158, - [233] = 159, - [234] = 160, - [235] = 161, - [236] = 205, - [237] = 212, - [238] = 191, - [239] = 188, - [240] = 164, - [241] = 190, - [242] = 166, - [243] = 173, - [244] = 172, - [245] = 188, - [246] = 191, - [247] = 188, - [248] = 164, - [249] = 190, - [250] = 170, - [251] = 191, - [252] = 170, - [253] = 171, - [254] = 174, - [255] = 177, - [256] = 178, - [257] = 179, - [258] = 154, - [259] = 156, - [260] = 157, - [261] = 158, - [262] = 159, - [263] = 160, - [264] = 161, - [265] = 205, - [266] = 171, - [267] = 174, - [268] = 175, - [269] = 177, - [270] = 166, - [271] = 172, - [272] = 178, - [273] = 173, - [274] = 179, - [275] = 173, - [276] = 205, + [189] = 177, + [190] = 156, + [191] = 159, + [192] = 178, + [193] = 158, + [194] = 158, + [195] = 156, + [196] = 156, + [197] = 176, + [198] = 198, + [199] = 182, + [200] = 159, + [201] = 157, + [202] = 182, + [203] = 155, + [204] = 168, + [205] = 177, + [206] = 188, + [207] = 161, + [208] = 168, + [209] = 174, + [210] = 154, + [211] = 160, + [212] = 173, + [213] = 171, + [214] = 182, + [215] = 157, + [216] = 161, + [217] = 167, + [218] = 178, + [219] = 177, + [220] = 167, + [221] = 168, + [222] = 163, + [223] = 163, + [224] = 224, + [225] = 178, + [226] = 162, + [227] = 176, + [228] = 176, + [229] = 171, + [230] = 230, + [231] = 164, + [232] = 170, + [233] = 162, + [234] = 170, + [235] = 224, + [236] = 236, + [237] = 164, + [238] = 173, + [239] = 224, + [240] = 155, + [241] = 160, + [242] = 158, + [243] = 159, + [244] = 159, + [245] = 224, + [246] = 174, + [247] = 164, + [248] = 158, + [249] = 155, + [250] = 250, + [251] = 251, + [252] = 168, + [253] = 156, + [254] = 224, + [255] = 255, + [256] = 177, + [257] = 174, + [258] = 258, + [259] = 154, + [260] = 160, + [261] = 173, + [262] = 230, + [263] = 176, + [264] = 264, + [265] = 265, + [266] = 162, + [267] = 267, + [268] = 268, + [269] = 178, + [270] = 170, + [271] = 167, + [272] = 171, + [273] = 161, + [274] = 182, + [275] = 155, + [276] = 157, [277] = 277, [278] = 277, [279] = 277, [280] = 280, - [281] = 281, - [282] = 281, - [283] = 281, - [284] = 280, + [281] = 280, + [282] = 282, + [283] = 282, + [284] = 282, [285] = 285, [286] = 286, [287] = 285, - [288] = 286, - [289] = 285, + [288] = 285, + [289] = 286, [290] = 286, [291] = 291, - [292] = 292, - [293] = 292, - [294] = 60, - [295] = 70, - [296] = 292, + [292] = 291, + [293] = 71, + [294] = 65, + [295] = 295, + [296] = 296, [297] = 297, [298] = 298, - [299] = 292, - [300] = 298, - [301] = 292, + [299] = 291, + [300] = 291, + [301] = 297, [302] = 302, - [303] = 297, - [304] = 297, - [305] = 72, - [306] = 73, - [307] = 307, - [308] = 308, - [309] = 292, - [310] = 307, - [311] = 302, - [312] = 312, - [313] = 292, + [303] = 291, + [304] = 296, + [305] = 70, + [306] = 306, + [307] = 302, + [308] = 73, + [309] = 291, + [310] = 302, + [311] = 311, + [312] = 298, + [313] = 72, [314] = 314, - [315] = 298, - [316] = 73, + [315] = 315, + [316] = 316, [317] = 317, - [318] = 70, - [319] = 319, + [318] = 67, + [319] = 297, [320] = 320, [321] = 321, - [322] = 72, - [323] = 323, - [324] = 324, - [325] = 325, + [322] = 322, + [323] = 70, + [324] = 73, + [325] = 71, [326] = 326, [327] = 327, [328] = 328, [329] = 329, - [330] = 330, - [331] = 321, + [330] = 320, + [331] = 331, [332] = 332, [333] = 333, - [334] = 67, + [334] = 334, [335] = 335, - [336] = 60, - [337] = 68, + [336] = 291, + [337] = 65, [338] = 338, [339] = 339, [340] = 340, @@ -2818,8 +2825,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [351] = 351, [352] = 352, [353] = 353, - [354] = 354, - [355] = 355, + [354] = 291, + [355] = 291, [356] = 356, [357] = 357, [358] = 358, @@ -2832,7 +2839,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [365] = 365, [366] = 366, [367] = 367, - [368] = 308, + [368] = 368, [369] = 369, [370] = 370, [371] = 371, @@ -2841,7 +2848,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [374] = 374, [375] = 375, [376] = 376, - [377] = 361, + [377] = 377, [378] = 378, [379] = 379, [380] = 380, @@ -2849,7 +2856,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [382] = 382, [383] = 383, [384] = 384, - [385] = 385, + [385] = 379, [386] = 386, [387] = 387, [388] = 388, @@ -2861,9 +2868,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [394] = 394, [395] = 395, [396] = 396, - [397] = 292, - [398] = 398, - [399] = 292, + [397] = 397, + [398] = 306, + [399] = 399, [400] = 400, [401] = 401, [402] = 402, @@ -2873,121 +2880,121 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [406] = 406, [407] = 407, [408] = 408, - [409] = 409, + [409] = 329, [410] = 410, [411] = 411, [412] = 412, [413] = 413, - [414] = 333, - [415] = 333, + [414] = 414, + [415] = 415, [416] = 416, [417] = 416, [418] = 418, - [419] = 418, + [419] = 419, [420] = 420, - [421] = 421, + [421] = 420, [422] = 422, [423] = 423, - [424] = 424, + [424] = 329, [425] = 425, [426] = 426, - [427] = 407, + [427] = 427, [428] = 428, [429] = 429, - [430] = 416, - [431] = 416, - [432] = 418, + [430] = 430, + [431] = 410, + [432] = 416, [433] = 416, - [434] = 434, - [435] = 418, - [436] = 436, - [437] = 416, - [438] = 438, - [439] = 439, - [440] = 413, - [441] = 408, - [442] = 333, + [434] = 420, + [435] = 435, + [436] = 406, + [437] = 437, + [438] = 428, + [439] = 329, + [440] = 408, + [441] = 416, + [442] = 416, [443] = 443, - [444] = 428, - [445] = 443, - [446] = 406, - [447] = 410, - [448] = 418, - [449] = 409, - [450] = 411, - [451] = 413, - [452] = 438, - [453] = 439, - [454] = 418, - [455] = 455, + [444] = 429, + [445] = 437, + [446] = 414, + [447] = 413, + [448] = 412, + [449] = 411, + [450] = 420, + [451] = 420, + [452] = 452, + [453] = 427, + [454] = 408, + [455] = 420, [456] = 456, - [457] = 455, - [458] = 413, + [457] = 457, + [458] = 457, [459] = 459, - [460] = 413, - [461] = 459, - [462] = 462, - [463] = 434, - [464] = 443, - [465] = 416, - [466] = 428, - [467] = 418, - [468] = 462, - [469] = 436, - [470] = 459, - [471] = 429, - [472] = 416, + [460] = 408, + [461] = 452, + [462] = 443, + [463] = 408, + [464] = 428, + [465] = 427, + [466] = 456, + [467] = 416, + [468] = 420, + [469] = 457, + [470] = 420, + [471] = 435, + [472] = 430, [473] = 416, - [474] = 418, - [475] = 418, - [476] = 456, - [477] = 413, - [478] = 478, - [479] = 51, + [474] = 420, + [475] = 416, + [476] = 408, + [477] = 459, + [478] = 51, + [479] = 479, [480] = 480, [481] = 481, [482] = 482, [483] = 483, - [484] = 484, + [484] = 71, [485] = 485, - [486] = 70, - [487] = 60, + [486] = 486, + [487] = 65, [488] = 488, [489] = 489, [490] = 490, [491] = 491, - [492] = 68, - [493] = 480, - [494] = 478, + [492] = 492, + [493] = 73, + [494] = 494, [495] = 495, [496] = 496, [497] = 497, - [498] = 498, + [498] = 70, [499] = 499, - [500] = 500, + [500] = 67, [501] = 501, [502] = 502, [503] = 503, [504] = 504, - [505] = 505, - [506] = 506, + [505] = 71, + [506] = 72, [507] = 507, [508] = 508, [509] = 509, [510] = 510, [511] = 511, - [512] = 512, + [512] = 479, [513] = 513, [514] = 514, - [515] = 72, + [515] = 65, [516] = 516, - [517] = 70, - [518] = 60, + [517] = 517, + [518] = 518, [519] = 519, [520] = 520, - [521] = 521, + [521] = 73, [522] = 522, - [523] = 67, + [523] = 523, [524] = 524, [525] = 525, [526] = 526, @@ -3002,10 +3009,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [535] = 535, [536] = 536, [537] = 537, - [538] = 67, + [538] = 538, [539] = 539, - [540] = 540, - [541] = 541, + [540] = 481, + [541] = 480, [542] = 542, [543] = 543, [544] = 544, @@ -3014,19 +3021,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [547] = 547, [548] = 548, [549] = 549, - [550] = 550, + [550] = 67, [551] = 551, [552] = 552, [553] = 553, [554] = 554, [555] = 555, - [556] = 73, + [556] = 72, [557] = 557, [558] = 558, [559] = 559, [560] = 560, [561] = 561, - [562] = 68, + [562] = 562, [563] = 563, [564] = 564, [565] = 565, @@ -3042,305 +3049,305 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [575] = 575, [576] = 576, [577] = 577, - [578] = 72, + [578] = 70, [579] = 579, - [580] = 73, - [581] = 481, + [580] = 580, + [581] = 581, [582] = 582, - [583] = 505, + [583] = 552, [584] = 584, - [585] = 482, - [586] = 586, - [587] = 488, + [585] = 552, + [586] = 523, + [587] = 525, [588] = 588, - [589] = 589, - [590] = 490, - [591] = 577, - [592] = 484, - [593] = 593, - [594] = 594, - [595] = 51, - [596] = 512, - [597] = 514, - [598] = 489, - [599] = 599, - [600] = 564, - [601] = 567, - [602] = 51, - [603] = 483, - [604] = 489, - [605] = 485, - [606] = 569, - [607] = 485, - [608] = 484, - [609] = 609, - [610] = 519, - [611] = 579, - [612] = 512, - [613] = 514, - [614] = 519, - [615] = 530, - [616] = 532, - [617] = 533, - [618] = 535, - [619] = 537, - [620] = 582, - [621] = 539, - [622] = 540, - [623] = 541, - [624] = 542, - [625] = 543, - [626] = 544, - [627] = 545, - [628] = 546, - [629] = 550, - [630] = 552, - [631] = 530, - [632] = 564, - [633] = 567, - [634] = 569, - [635] = 532, - [636] = 490, - [637] = 533, - [638] = 535, - [639] = 505, - [640] = 537, - [641] = 582, - [642] = 539, - [643] = 540, - [644] = 541, - [645] = 542, - [646] = 543, - [647] = 544, - [648] = 545, - [649] = 546, - [650] = 550, - [651] = 651, - [652] = 552, - [653] = 483, - [654] = 525, - [655] = 52, - [656] = 498, - [657] = 499, - [658] = 500, - [659] = 64, - [660] = 501, + [589] = 525, + [590] = 496, + [591] = 494, + [592] = 486, + [593] = 51, + [594] = 530, + [595] = 595, + [596] = 543, + [597] = 504, + [598] = 486, + [599] = 523, + [600] = 495, + [601] = 488, + [602] = 534, + [603] = 546, + [604] = 604, + [605] = 482, + [606] = 522, + [607] = 574, + [608] = 494, + [609] = 539, + [610] = 533, + [611] = 548, + [612] = 612, + [613] = 492, + [614] = 614, + [615] = 527, + [616] = 522, + [617] = 489, + [618] = 618, + [619] = 555, + [620] = 485, + [621] = 496, + [622] = 562, + [623] = 623, + [624] = 574, + [625] = 562, + [626] = 561, + [627] = 561, + [628] = 559, + [629] = 539, + [630] = 558, + [631] = 557, + [632] = 483, + [633] = 554, + [634] = 559, + [635] = 527, + [636] = 553, + [637] = 558, + [638] = 548, + [639] = 546, + [640] = 504, + [641] = 51, + [642] = 557, + [643] = 555, + [644] = 554, + [645] = 489, + [646] = 646, + [647] = 553, + [648] = 543, + [649] = 534, + [650] = 485, + [651] = 530, + [652] = 483, + [653] = 533, + [654] = 654, + [655] = 508, + [656] = 656, + [657] = 513, + [658] = 565, + [659] = 58, + [660] = 660, [661] = 661, - [662] = 516, - [663] = 53, + [662] = 509, + [663] = 501, [664] = 664, - [665] = 665, - [666] = 568, - [667] = 555, - [668] = 575, - [669] = 528, - [670] = 509, - [671] = 483, - [672] = 489, - [673] = 485, - [674] = 483, - [675] = 489, - [676] = 485, - [677] = 576, - [678] = 678, - [679] = 679, - [680] = 680, - [681] = 681, + [665] = 490, + [666] = 507, + [667] = 502, + [668] = 569, + [669] = 485, + [670] = 536, + [671] = 503, + [672] = 672, + [673] = 573, + [674] = 674, + [675] = 570, + [676] = 676, + [677] = 674, + [678] = 516, + [679] = 551, + [680] = 575, + [681] = 581, [682] = 682, - [683] = 665, - [684] = 684, - [685] = 685, - [686] = 678, - [687] = 503, - [688] = 504, + [683] = 661, + [684] = 547, + [685] = 567, + [686] = 577, + [687] = 576, + [688] = 66, [689] = 689, [690] = 690, - [691] = 570, - [692] = 520, - [693] = 678, - [694] = 680, - [695] = 521, - [696] = 678, - [697] = 522, - [698] = 571, - [699] = 524, - [700] = 572, - [701] = 484, - [702] = 527, - [703] = 510, - [704] = 528, - [705] = 506, - [706] = 706, - [707] = 529, - [708] = 593, - [709] = 511, - [710] = 710, - [711] = 711, - [712] = 573, - [713] = 502, - [714] = 679, - [715] = 574, - [716] = 507, - [717] = 491, - [718] = 554, - [719] = 685, - [720] = 557, - [721] = 531, - [722] = 54, - [723] = 558, - [724] = 559, - [725] = 513, - [726] = 661, - [727] = 560, - [728] = 534, - [729] = 680, - [730] = 484, - [731] = 561, - [732] = 508, - [733] = 536, - [734] = 681, - [735] = 735, - [736] = 55, - [737] = 563, - [738] = 738, - [739] = 565, - [740] = 56, - [741] = 566, - [742] = 495, - [743] = 496, - [744] = 497, - [745] = 547, - [746] = 682, - [747] = 548, - [748] = 549, + [691] = 582, + [692] = 580, + [693] = 579, + [694] = 52, + [695] = 57, + [696] = 485, + [697] = 661, + [698] = 672, + [699] = 535, + [700] = 486, + [701] = 519, + [702] = 526, + [703] = 63, + [704] = 491, + [705] = 537, + [706] = 538, + [707] = 511, + [708] = 660, + [709] = 661, + [710] = 564, + [711] = 563, + [712] = 712, + [713] = 544, + [714] = 714, + [715] = 549, + [716] = 672, + [717] = 510, + [718] = 532, + [719] = 542, + [720] = 531, + [721] = 55, + [722] = 722, + [723] = 656, + [724] = 664, + [725] = 725, + [726] = 712, + [727] = 59, + [728] = 518, + [729] = 528, + [730] = 730, + [731] = 529, + [732] = 732, + [733] = 526, + [734] = 618, + [735] = 483, + [736] = 489, + [737] = 520, + [738] = 489, + [739] = 560, + [740] = 483, + [741] = 486, + [742] = 517, + [743] = 56, + [744] = 499, + [745] = 545, + [746] = 566, + [747] = 725, + [748] = 514, [749] = 749, - [750] = 58, - [751] = 551, - [752] = 59, - [753] = 753, - [754] = 553, - [755] = 526, - [756] = 541, - [757] = 542, + [750] = 497, + [751] = 571, + [752] = 752, + [753] = 524, + [754] = 568, + [755] = 572, + [756] = 756, + [757] = 574, [758] = 758, - [759] = 543, - [760] = 544, - [761] = 505, - [762] = 762, - [763] = 545, - [764] = 546, - [765] = 550, - [766] = 552, - [767] = 564, - [768] = 567, - [769] = 569, - [770] = 490, - [771] = 664, - [772] = 512, - [773] = 514, - [774] = 519, - [775] = 530, - [776] = 776, - [777] = 532, - [778] = 533, - [779] = 779, - [780] = 780, - [781] = 535, - [782] = 782, - [783] = 537, - [784] = 582, - [785] = 785, - [786] = 539, - [787] = 540, - [788] = 544, - [789] = 789, - [790] = 483, - [791] = 489, - [792] = 485, - [793] = 789, - [794] = 794, - [795] = 789, - [796] = 794, - [797] = 797, - [798] = 505, - [799] = 789, - [800] = 685, - [801] = 512, - [802] = 514, - [803] = 519, - [804] = 530, - [805] = 532, - [806] = 533, - [807] = 535, - [808] = 537, - [809] = 582, - [810] = 539, - [811] = 540, - [812] = 541, - [813] = 542, - [814] = 543, - [815] = 545, - [816] = 546, - [817] = 550, - [818] = 552, - [819] = 564, - [820] = 567, - [821] = 569, - [822] = 490, - [823] = 593, - [824] = 789, - [825] = 528, - [826] = 483, - [827] = 827, - [828] = 828, - [829] = 828, - [830] = 684, - [831] = 489, - [832] = 485, - [833] = 828, - [834] = 828, - [835] = 828, - [836] = 827, - [837] = 828, - [838] = 828, - [839] = 484, + [759] = 496, + [760] = 539, + [761] = 562, + [762] = 527, + [763] = 561, + [764] = 522, + [765] = 552, + [766] = 494, + [767] = 767, + [768] = 559, + [769] = 769, + [770] = 558, + [771] = 557, + [772] = 555, + [773] = 682, + [774] = 554, + [775] = 553, + [776] = 548, + [777] = 546, + [778] = 543, + [779] = 534, + [780] = 533, + [781] = 781, + [782] = 530, + [783] = 783, + [784] = 784, + [785] = 504, + [786] = 523, + [787] = 525, + [788] = 554, + [789] = 562, + [790] = 546, + [791] = 527, + [792] = 558, + [793] = 793, + [794] = 793, + [795] = 559, + [796] = 552, + [797] = 504, + [798] = 618, + [799] = 555, + [800] = 523, + [801] = 801, + [802] = 525, + [803] = 522, + [804] = 553, + [805] = 483, + [806] = 489, + [807] = 561, + [808] = 485, + [809] = 539, + [810] = 810, + [811] = 557, + [812] = 793, + [813] = 494, + [814] = 548, + [815] = 496, + [816] = 574, + [817] = 530, + [818] = 793, + [819] = 793, + [820] = 543, + [821] = 801, + [822] = 534, + [823] = 712, + [824] = 533, + [825] = 825, + [826] = 826, + [827] = 486, + [828] = 730, + [829] = 825, + [830] = 825, + [831] = 485, + [832] = 826, + [833] = 825, + [834] = 489, + [835] = 825, + [836] = 483, + [837] = 825, + [838] = 825, + [839] = 526, [840] = 840, [841] = 841, [842] = 842, - [843] = 843, - [844] = 841, + [843] = 842, + [844] = 842, [845] = 842, [846] = 841, [847] = 841, - [848] = 842, - [849] = 842, + [848] = 848, + [849] = 841, [850] = 850, [851] = 851, - [852] = 852, - [853] = 852, + [852] = 851, + [853] = 853, [854] = 854, [855] = 855, [856] = 856, - [857] = 855, - [858] = 856, - [859] = 855, - [860] = 856, - [861] = 855, + [857] = 856, + [858] = 855, + [859] = 856, + [860] = 855, + [861] = 856, [862] = 856, - [863] = 856, - [864] = 855, + [863] = 855, + [864] = 856, [865] = 855, - [866] = 856, + [866] = 855, [867] = 855, [868] = 856, [869] = 869, - [870] = 870, + [870] = 869, [871] = 869, [872] = 869, [873] = 869, [874] = 869, [875] = 869, - [876] = 869, + [876] = 876, [877] = 877, [878] = 878, [879] = 879, @@ -3361,7 +3368,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [894] = 894, [895] = 895, [896] = 896, - [897] = 897, + [897] = 65, [898] = 898, [899] = 899, [900] = 900, @@ -3381,10 +3388,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [914] = 914, [915] = 915, [916] = 916, - [917] = 917, - [918] = 70, + [917] = 71, + [918] = 918, [919] = 919, - [920] = 60, + [920] = 920, [921] = 921, [922] = 922, [923] = 923, @@ -3395,93 +3402,93 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [928] = 928, [929] = 929, [930] = 930, - [931] = 931, - [932] = 521, - [933] = 933, + [931] = 551, + [932] = 932, + [933] = 70, [934] = 934, [935] = 935, [936] = 936, - [937] = 73, - [938] = 938, + [937] = 937, + [938] = 73, [939] = 939, - [940] = 72, - [941] = 506, - [942] = 942, - [943] = 891, + [940] = 940, + [941] = 941, + [942] = 502, + [943] = 888, [944] = 944, [945] = 945, - [946] = 885, - [947] = 890, - [948] = 948, - [949] = 948, - [950] = 950, - [951] = 890, - [952] = 917, - [953] = 904, - [954] = 576, + [946] = 887, + [947] = 944, + [948] = 888, + [949] = 949, + [950] = 890, + [951] = 951, + [952] = 952, + [953] = 953, + [954] = 954, [955] = 955, [956] = 956, [957] = 957, - [958] = 958, - [959] = 959, - [960] = 960, - [961] = 961, - [962] = 905, - [963] = 963, - [964] = 917, - [965] = 965, - [966] = 955, - [967] = 967, - [968] = 572, + [958] = 535, + [959] = 513, + [960] = 568, + [961] = 952, + [962] = 930, + [963] = 957, + [964] = 956, + [965] = 929, + [966] = 966, + [967] = 955, + [968] = 954, [969] = 969, - [970] = 970, - [971] = 956, - [972] = 957, - [973] = 958, - [974] = 960, - [975] = 967, - [976] = 926, + [970] = 925, + [971] = 969, + [972] = 972, + [973] = 973, + [974] = 972, + [975] = 975, + [976] = 976, [977] = 977, - [978] = 970, + [978] = 925, [979] = 979, - [980] = 921, - [981] = 981, - [982] = 534, - [983] = 961, - [984] = 969, - [985] = 963, - [986] = 965, - [987] = 977, + [980] = 980, + [981] = 923, + [982] = 980, + [983] = 979, + [984] = 973, + [985] = 919, + [986] = 966, + [987] = 953, [988] = 988, - [989] = 988, + [989] = 989, [990] = 990, [991] = 991, [992] = 992, [993] = 993, - [994] = 994, + [994] = 990, [995] = 995, - [996] = 993, - [997] = 997, - [998] = 997, - [999] = 992, - [1000] = 990, - [1001] = 1001, - [1002] = 1001, - [1003] = 994, - [1004] = 997, - [1005] = 997, - [1006] = 1006, - [1007] = 995, - [1008] = 991, - [1009] = 997, - [1010] = 1006, + [996] = 996, + [997] = 989, + [998] = 998, + [999] = 993, + [1000] = 1000, + [1001] = 991, + [1002] = 992, + [1003] = 992, + [1004] = 995, + [1005] = 1000, + [1006] = 998, + [1007] = 992, + [1008] = 996, + [1009] = 988, + [1010] = 992, [1011] = 1011, [1012] = 1011, - [1013] = 1011, - [1014] = 1014, - [1015] = 1014, - [1016] = 1014, - [1017] = 1014, + [1013] = 1013, + [1014] = 1011, + [1015] = 1013, + [1016] = 1013, + [1017] = 1013, [1018] = 1011, [1019] = 1019, [1020] = 1020, @@ -3490,36 +3497,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1023] = 1021, [1024] = 1021, [1025] = 1025, - [1026] = 1026, - [1027] = 1026, - [1028] = 1026, - [1029] = 1026, - [1030] = 1025, + [1026] = 1025, + [1027] = 1027, + [1028] = 1025, + [1029] = 1027, + [1030] = 1027, [1031] = 1025, - [1032] = 1025, + [1032] = 1027, [1033] = 1033, [1034] = 1034, [1035] = 1035, - [1036] = 1036, - [1037] = 1037, - [1038] = 1035, + [1036] = 1033, + [1037] = 1035, + [1038] = 1038, [1039] = 1039, [1040] = 1040, - [1041] = 1039, - [1042] = 1035, - [1043] = 1039, - [1044] = 1033, - [1045] = 1036, - [1046] = 1033, - [1047] = 1037, - [1048] = 1035, - [1049] = 1039, - [1050] = 1050, - [1051] = 1036, - [1052] = 1037, - [1053] = 1033, - [1054] = 1037, - [1055] = 1036, + [1041] = 1040, + [1042] = 1042, + [1043] = 1034, + [1044] = 1035, + [1045] = 1033, + [1046] = 1034, + [1047] = 1047, + [1048] = 1033, + [1049] = 1040, + [1050] = 1039, + [1051] = 1034, + [1052] = 1040, + [1053] = 1039, + [1054] = 1035, + [1055] = 1039, [1056] = 1056, [1057] = 1057, [1058] = 1058, @@ -3529,198 +3536,198 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1062] = 1062, [1063] = 1063, [1064] = 1064, - [1065] = 1065, + [1065] = 1059, [1066] = 1066, - [1067] = 1063, + [1067] = 1067, [1068] = 1068, - [1069] = 1069, - [1070] = 1063, - [1071] = 1063, - [1072] = 1072, - [1073] = 1073, - [1074] = 1063, - [1075] = 1063, + [1069] = 1059, + [1070] = 1059, + [1071] = 1071, + [1072] = 1059, + [1073] = 1059, + [1074] = 1074, + [1075] = 1075, [1076] = 1076, - [1077] = 1063, + [1077] = 1059, [1078] = 1078, [1079] = 1079, [1080] = 1080, [1081] = 1081, - [1082] = 511, + [1082] = 1082, [1083] = 1083, [1084] = 1084, - [1085] = 1085, - [1086] = 1086, - [1087] = 1087, - [1088] = 549, - [1089] = 1084, + [1085] = 572, + [1086] = 571, + [1087] = 566, + [1088] = 560, + [1089] = 1089, [1090] = 1090, - [1091] = 1091, + [1091] = 509, [1092] = 1092, [1093] = 1093, [1094] = 1094, - [1095] = 1085, - [1096] = 558, - [1097] = 559, - [1098] = 560, + [1095] = 492, + [1096] = 1096, + [1097] = 1097, + [1098] = 1098, [1099] = 1099, [1100] = 1100, - [1101] = 561, - [1102] = 548, - [1103] = 573, - [1104] = 1104, + [1101] = 1076, + [1102] = 495, + [1103] = 1103, + [1104] = 1068, [1105] = 1105, [1106] = 1106, [1107] = 1107, - [1108] = 1108, - [1109] = 1109, + [1108] = 501, + [1109] = 1084, [1110] = 1110, [1111] = 1111, - [1112] = 579, + [1112] = 1112, [1113] = 1113, - [1114] = 1081, + [1114] = 1114, [1115] = 1115, [1116] = 1116, - [1117] = 1069, + [1117] = 1107, [1118] = 1118, [1119] = 1119, [1120] = 1120, - [1121] = 1093, - [1122] = 1122, - [1123] = 1123, + [1121] = 1121, + [1122] = 529, + [1123] = 1066, [1124] = 1124, - [1125] = 1076, - [1126] = 1064, - [1127] = 1060, + [1125] = 1067, + [1126] = 1126, + [1127] = 1081, [1128] = 1128, - [1129] = 1129, - [1130] = 522, - [1131] = 1131, + [1129] = 569, + [1130] = 1130, + [1131] = 1110, [1132] = 1132, - [1133] = 577, - [1134] = 1107, + [1133] = 490, + [1134] = 571, [1135] = 1135, - [1136] = 1135, + [1136] = 1136, [1137] = 1137, [1138] = 1138, [1139] = 1139, - [1140] = 1140, + [1140] = 1137, [1141] = 1141, [1142] = 1142, - [1143] = 577, + [1143] = 1141, [1144] = 1144, [1145] = 1145, - [1146] = 1144, + [1146] = 1146, [1147] = 1147, - [1148] = 1148, - [1149] = 1144, - [1150] = 511, - [1151] = 522, + [1148] = 1145, + [1149] = 1149, + [1150] = 1089, + [1151] = 1151, [1152] = 1152, - [1153] = 548, - [1154] = 549, + [1153] = 1135, + [1154] = 1154, [1155] = 1155, - [1156] = 1156, - [1157] = 1139, - [1158] = 1140, - [1159] = 1159, + [1156] = 509, + [1157] = 1094, + [1158] = 1137, + [1159] = 495, [1160] = 1160, - [1161] = 579, - [1162] = 1144, - [1163] = 558, - [1164] = 559, - [1165] = 560, - [1166] = 1155, + [1161] = 1161, + [1162] = 560, + [1163] = 1160, + [1164] = 1164, + [1165] = 1161, + [1166] = 566, [1167] = 1167, - [1168] = 1168, - [1169] = 1155, - [1170] = 1155, - [1171] = 1171, - [1172] = 1168, - [1173] = 1171, - [1174] = 1129, + [1168] = 1152, + [1169] = 1137, + [1170] = 1170, + [1171] = 1146, + [1172] = 1164, + [1173] = 572, + [1174] = 492, [1175] = 1175, - [1176] = 1138, - [1177] = 1177, - [1178] = 1178, - [1179] = 1179, - [1180] = 561, - [1181] = 1156, - [1182] = 573, - [1183] = 1160, + [1176] = 569, + [1177] = 490, + [1178] = 1135, + [1179] = 501, + [1180] = 529, + [1181] = 1155, + [1182] = 1135, + [1183] = 1183, [1184] = 1184, [1185] = 1185, [1186] = 1186, [1187] = 1187, - [1188] = 1188, + [1188] = 1105, [1189] = 1189, - [1190] = 1190, - [1191] = 1086, - [1192] = 1087, + [1190] = 1185, + [1191] = 1191, + [1192] = 1192, [1193] = 1193, [1194] = 1194, [1195] = 1195, [1196] = 1196, - [1197] = 1197, + [1197] = 1189, [1198] = 1198, - [1199] = 1186, + [1199] = 1199, [1200] = 1200, - [1201] = 1200, - [1202] = 1202, - [1203] = 1203, + [1201] = 1198, + [1202] = 1196, + [1203] = 1191, [1204] = 1204, [1205] = 1205, - [1206] = 1206, - [1207] = 1203, - [1208] = 1208, + [1206] = 1191, + [1207] = 1207, + [1208] = 1189, [1209] = 1209, [1210] = 1210, - [1211] = 1159, - [1212] = 1212, - [1213] = 1202, + [1211] = 1211, + [1212] = 1186, + [1213] = 1213, [1214] = 1214, - [1215] = 1187, + [1215] = 1215, [1216] = 1216, - [1217] = 1188, - [1218] = 1193, + [1217] = 1217, + [1218] = 1218, [1219] = 1219, - [1220] = 1200, - [1221] = 1203, - [1222] = 1187, - [1223] = 1195, + [1220] = 1220, + [1221] = 1221, + [1222] = 1222, + [1223] = 1139, [1224] = 1224, - [1225] = 1210, - [1226] = 1226, - [1227] = 1227, - [1228] = 1219, - [1229] = 1229, - [1230] = 1188, - [1231] = 1231, - [1232] = 1108, - [1233] = 1200, - [1234] = 1187, - [1235] = 1235, + [1225] = 1225, + [1226] = 1204, + [1227] = 1215, + [1228] = 1198, + [1229] = 1196, + [1230] = 1196, + [1231] = 1222, + [1232] = 1232, + [1233] = 1120, + [1234] = 1119, + [1235] = 1128, [1236] = 1236, [1237] = 1237, - [1238] = 1238, - [1239] = 1239, - [1240] = 1123, - [1241] = 1241, - [1242] = 1242, + [1238] = 1198, + [1239] = 1236, + [1240] = 1210, + [1241] = 1207, + [1242] = 1115, [1243] = 1243, - [1244] = 1244, - [1245] = 1208, - [1246] = 1246, - [1247] = 1188, - [1248] = 1248, - [1249] = 1203, - [1250] = 1110, + [1244] = 1214, + [1245] = 1245, + [1246] = 1219, + [1247] = 1247, + [1248] = 1191, + [1249] = 1249, + [1250] = 1250, [1251] = 1251, - [1252] = 1216, - [1253] = 1251, - [1254] = 1226, - [1255] = 1243, - [1256] = 1256, + [1252] = 1252, + [1253] = 1211, + [1254] = 1254, + [1255] = 1254, + [1256] = 1189, [1257] = 1257, [1258] = 1258, [1259] = 1259, @@ -3729,14 +3736,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1262] = 1262, [1263] = 1263, [1264] = 1264, - [1265] = 1263, + [1265] = 1265, [1266] = 1266, - [1267] = 1267, - [1268] = 1268, + [1267] = 1266, + [1268] = 314, [1269] = 1269, [1270] = 1270, [1271] = 1271, - [1272] = 1264, + [1272] = 1272, [1273] = 1273, [1274] = 1274, [1275] = 1275, @@ -3749,80 +3756,80 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1282] = 1282, [1283] = 1283, [1284] = 1284, - [1285] = 1264, + [1285] = 1285, [1286] = 1269, [1287] = 1287, - [1288] = 1257, + [1288] = 1281, [1289] = 1289, [1290] = 1290, [1291] = 1291, [1292] = 1292, [1293] = 1293, - [1294] = 1294, + [1294] = 1282, [1295] = 1295, - [1296] = 1273, + [1296] = 1277, [1297] = 1297, - [1298] = 1298, - [1299] = 1269, + [1298] = 1275, + [1299] = 1299, [1300] = 1300, - [1301] = 1279, + [1301] = 1271, [1302] = 1302, - [1303] = 1257, + [1303] = 1303, [1304] = 1304, - [1305] = 1290, + [1305] = 1305, [1306] = 1306, [1307] = 1307, [1308] = 1308, [1309] = 1309, [1310] = 1310, - [1311] = 1311, - [1312] = 1312, - [1313] = 1300, - [1314] = 1314, + [1311] = 1303, + [1312] = 1276, + [1313] = 1313, + [1314] = 1281, [1315] = 1315, [1316] = 1316, - [1317] = 1317, - [1318] = 1290, - [1319] = 1307, - [1320] = 1320, - [1321] = 1291, - [1322] = 1258, - [1323] = 1323, + [1317] = 1261, + [1318] = 1260, + [1319] = 1297, + [1320] = 1289, + [1321] = 1280, + [1322] = 1278, + [1323] = 1273, [1324] = 1324, - [1325] = 1325, - [1326] = 327, - [1327] = 1276, - [1328] = 1260, - [1329] = 1287, - [1330] = 1302, - [1331] = 1331, - [1332] = 1289, + [1325] = 1274, + [1326] = 1326, + [1327] = 1327, + [1328] = 1328, + [1329] = 1329, + [1330] = 1290, + [1331] = 1299, + [1332] = 1300, [1333] = 1333, - [1334] = 1295, - [1335] = 1297, - [1336] = 1298, - [1337] = 1297, - [1338] = 1298, - [1339] = 1259, - [1340] = 1300, - [1341] = 1323, - [1342] = 1331, - [1343] = 1316, + [1334] = 1273, + [1335] = 1329, + [1336] = 1281, + [1337] = 1277, + [1338] = 1275, + [1339] = 1282, + [1340] = 1271, + [1341] = 1341, + [1342] = 1290, + [1343] = 1305, [1344] = 1344, - [1345] = 1300, - [1346] = 1279, - [1347] = 1292, - [1348] = 1348, - [1349] = 1317, - [1350] = 1320, + [1345] = 1306, + [1346] = 1346, + [1347] = 1307, + [1348] = 1310, + [1349] = 1349, + [1350] = 1306, [1351] = 1351, - [1352] = 1276, - [1353] = 1291, - [1354] = 1354, - [1355] = 1355, + [1352] = 1307, + [1353] = 1353, + [1354] = 1274, + [1355] = 1272, [1356] = 1356, - [1357] = 1270, - [1358] = 1358, + [1357] = 1357, + [1358] = 1357, [1359] = 1359, [1360] = 1360, [1361] = 1361, @@ -3845,13 +3852,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1378] = 1378, [1379] = 1379, [1380] = 1380, - [1381] = 1379, + [1381] = 1381, [1382] = 1382, [1383] = 1383, [1384] = 1384, [1385] = 1385, [1386] = 1386, - [1387] = 1387, + [1387] = 1237, [1388] = 1388, [1389] = 1389, [1390] = 1390, @@ -3863,21 +3870,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1396] = 1396, [1397] = 1397, [1398] = 1398, - [1399] = 1376, - [1400] = 1377, - [1401] = 1378, + [1399] = 1399, + [1400] = 1400, + [1401] = 1401, [1402] = 1402, [1403] = 1403, [1404] = 1404, [1405] = 1405, - [1406] = 1360, + [1406] = 1406, [1407] = 1407, [1408] = 1408, [1409] = 1409, - [1410] = 1244, + [1410] = 1410, [1411] = 1411, - [1412] = 1358, - [1413] = 1384, + [1412] = 1412, + [1413] = 1413, [1414] = 1414, [1415] = 1415, [1416] = 1416, @@ -3888,12 +3895,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1421] = 1421, [1422] = 1422, [1423] = 1423, - [1424] = 1382, + [1424] = 1424, [1425] = 1425, [1426] = 1426, - [1427] = 1427, + [1427] = 1391, [1428] = 1428, - [1429] = 1361, + [1429] = 1359, [1430] = 1430, [1431] = 1431, [1432] = 1432, @@ -3901,10 +3908,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1434] = 1434, [1435] = 1435, [1436] = 1436, - [1437] = 1434, + [1437] = 1437, [1438] = 1438, [1439] = 1439, - [1440] = 1392, + [1440] = 1440, [1441] = 1441, [1442] = 1442, [1443] = 1443, @@ -3915,249 +3922,252 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1448] = 1448, [1449] = 1449, [1450] = 1450, - [1451] = 1385, + [1451] = 1451, [1452] = 1452, - [1453] = 554, - [1454] = 1389, - [1455] = 1450, + [1453] = 1453, + [1454] = 1454, + [1455] = 1455, [1456] = 1456, [1457] = 1457, [1458] = 1458, - [1459] = 1369, + [1459] = 1459, [1460] = 1460, - [1461] = 1452, - [1462] = 1441, + [1461] = 1461, + [1462] = 1462, [1463] = 1463, - [1464] = 1445, + [1464] = 1464, [1465] = 1465, - [1466] = 1456, + [1466] = 1466, [1467] = 1467, - [1468] = 1468, + [1468] = 1371, [1469] = 1469, [1470] = 1470, - [1471] = 555, - [1472] = 1472, + [1471] = 1471, + [1472] = 1360, [1473] = 1473, [1474] = 1474, [1475] = 1475, [1476] = 1476, [1477] = 1477, - [1478] = 1478, - [1479] = 1479, - [1480] = 1418, - [1481] = 1481, - [1482] = 1482, - [1483] = 1483, - [1484] = 1484, - [1485] = 1485, - [1486] = 1486, - [1487] = 1363, - [1488] = 1488, + [1478] = 1473, + [1479] = 1359, + [1480] = 1480, + [1481] = 1391, + [1482] = 1428, + [1483] = 1470, + [1484] = 1469, + [1485] = 1466, + [1486] = 1456, + [1487] = 1440, + [1488] = 1439, [1489] = 1489, [1490] = 1490, [1491] = 1491, - [1492] = 1484, - [1493] = 1370, - [1494] = 1494, - [1495] = 1495, - [1496] = 1421, - [1497] = 1432, - [1498] = 1498, - [1499] = 1444, - [1500] = 1449, - [1501] = 1460, - [1502] = 1463, - [1503] = 1465, - [1504] = 1468, - [1505] = 1474, - [1506] = 1475, - [1507] = 1476, - [1508] = 1508, - [1509] = 1509, - [1510] = 1510, - [1511] = 1511, - [1512] = 1512, - [1513] = 1513, - [1514] = 1473, - [1515] = 1495, + [1492] = 1492, + [1493] = 1493, + [1494] = 1435, + [1495] = 1430, + [1496] = 1496, + [1497] = 1497, + [1498] = 1377, + [1499] = 1499, + [1500] = 1421, + [1501] = 1420, + [1502] = 1413, + [1503] = 1412, + [1504] = 1504, + [1505] = 1409, + [1506] = 1506, + [1507] = 1493, + [1508] = 1408, + [1509] = 1407, + [1510] = 1491, + [1511] = 1404, + [1512] = 1400, + [1513] = 1393, + [1514] = 1392, + [1515] = 575, [1516] = 1516, [1517] = 1517, - [1518] = 1518, - [1519] = 1510, - [1520] = 1438, - [1521] = 1442, - [1522] = 1446, - [1523] = 1516, - [1524] = 1517, - [1525] = 1447, - [1526] = 1526, - [1527] = 1527, - [1528] = 1528, - [1529] = 1529, - [1530] = 1530, - [1531] = 1482, - [1532] = 1528, - [1533] = 1376, - [1534] = 1395, + [1518] = 1372, + [1519] = 1519, + [1520] = 1480, + [1521] = 1521, + [1522] = 1504, + [1523] = 1362, + [1524] = 1373, + [1525] = 1380, + [1526] = 1384, + [1527] = 1386, + [1528] = 1405, + [1529] = 1460, + [1530] = 1449, + [1531] = 1448, + [1532] = 1446, + [1533] = 1445, + [1534] = 1444, [1535] = 1535, - [1536] = 1536, - [1537] = 1483, - [1538] = 1378, - [1539] = 1539, - [1540] = 1490, + [1536] = 577, + [1537] = 1426, + [1538] = 1425, + [1539] = 1410, + [1540] = 1416, [1541] = 1541, - [1542] = 1509, - [1543] = 1543, - [1544] = 1544, - [1545] = 1485, - [1546] = 1491, - [1547] = 1547, - [1548] = 1548, - [1549] = 1498, - [1550] = 1550, - [1551] = 1508, - [1552] = 1365, - [1553] = 1553, - [1554] = 1536, - [1555] = 1548, - [1556] = 1556, + [1542] = 1542, + [1543] = 1411, + [1544] = 1385, + [1545] = 1383, + [1546] = 1382, + [1547] = 1381, + [1548] = 1379, + [1549] = 1378, + [1550] = 1375, + [1551] = 1374, + [1552] = 1368, + [1553] = 1365, + [1554] = 1364, + [1555] = 1363, + [1556] = 1414, [1557] = 1557, - [1558] = 1411, - [1559] = 1559, - [1560] = 1386, - [1561] = 516, - [1562] = 1387, - [1563] = 1563, - [1564] = 1376, - [1565] = 1565, - [1566] = 1378, - [1567] = 1416, - [1568] = 1563, - [1569] = 1419, - [1570] = 1570, + [1558] = 1389, + [1559] = 1424, + [1560] = 1415, + [1561] = 1419, + [1562] = 1433, + [1563] = 1431, + [1564] = 1477, + [1565] = 1434, + [1566] = 1432, + [1567] = 1443, + [1568] = 1568, + [1569] = 1461, + [1570] = 1476, [1571] = 1571, - [1572] = 1486, - [1573] = 1415, - [1574] = 1372, - [1575] = 1417, - [1576] = 1426, - [1577] = 1448, - [1578] = 1403, + [1572] = 1572, + [1573] = 1359, + [1574] = 1391, + [1575] = 1575, + [1576] = 1576, + [1577] = 1489, + [1578] = 1578, [1579] = 1579, - [1580] = 1467, - [1581] = 1581, - [1582] = 1477, - [1583] = 1478, - [1584] = 1479, - [1585] = 1585, - [1586] = 1366, + [1580] = 1499, + [1581] = 1490, + [1582] = 1492, + [1583] = 1583, + [1584] = 1496, + [1585] = 516, + [1586] = 1586, [1587] = 1587, - [1588] = 1373, - [1589] = 1375, - [1590] = 1439, - [1591] = 1420, - [1592] = 1380, - [1593] = 1593, - [1594] = 1543, - [1595] = 1511, - [1596] = 1541, - [1597] = 1544, - [1598] = 1512, - [1599] = 1585, - [1600] = 1513, - [1601] = 1435, - [1602] = 1602, + [1588] = 1588, + [1589] = 1572, + [1590] = 1590, + [1591] = 1455, + [1592] = 1592, + [1593] = 1452, + [1594] = 1450, + [1595] = 1595, + [1596] = 1557, + [1597] = 1597, + [1598] = 1598, + [1599] = 1597, + [1600] = 1598, + [1601] = 1471, + [1602] = 1475, [1603] = 1603, [1604] = 1604, - [1605] = 1605, + [1605] = 1247, [1606] = 1606, - [1607] = 1607, + [1607] = 1606, [1608] = 1608, [1609] = 1609, [1610] = 1610, [1611] = 1611, [1612] = 1612, - [1613] = 1605, + [1613] = 1613, [1614] = 1614, - [1615] = 1238, + [1615] = 1615, [1616] = 1616, - [1617] = 1606, + [1617] = 1617, [1618] = 1618, [1619] = 1619, - [1620] = 1605, + [1620] = 1620, [1621] = 1621, - [1622] = 1622, - [1623] = 1604, - [1624] = 1616, - [1625] = 1625, + [1622] = 1614, + [1623] = 1613, + [1624] = 1624, + [1625] = 1611, [1626] = 1626, - [1627] = 1608, + [1627] = 1627, [1628] = 1628, [1629] = 1629, [1630] = 1630, [1631] = 1631, [1632] = 1632, [1633] = 1633, - [1634] = 1606, + [1634] = 1634, [1635] = 1635, - [1636] = 1626, - [1637] = 1637, + [1636] = 1636, + [1637] = 1606, [1638] = 1638, - [1639] = 1607, - [1640] = 1604, - [1641] = 1626, - [1642] = 1607, - [1643] = 1606, - [1644] = 1644, + [1639] = 1639, + [1640] = 1640, + [1641] = 1641, + [1642] = 1634, + [1643] = 1643, + [1644] = 1617, [1645] = 1645, - [1646] = 1646, - [1647] = 1611, - [1648] = 1626, - [1649] = 1649, - [1650] = 1650, - [1651] = 1651, - [1652] = 1611, + [1646] = 1643, + [1647] = 1634, + [1648] = 1617, + [1649] = 1614, + [1650] = 1613, + [1651] = 1611, + [1652] = 1643, [1653] = 1653, - [1654] = 1651, + [1654] = 1654, [1655] = 1655, [1656] = 1656, - [1657] = 1618, + [1657] = 1657, [1658] = 1658, - [1659] = 1603, - [1660] = 1603, - [1661] = 1661, - [1662] = 1618, - [1663] = 1663, - [1664] = 1604, - [1665] = 1607, - [1666] = 1621, - [1667] = 1603, + [1659] = 1659, + [1660] = 1604, + [1661] = 1621, + [1662] = 1662, + [1663] = 1627, + [1664] = 1612, + [1665] = 1618, + [1666] = 1666, + [1667] = 1667, [1668] = 1668, [1669] = 1669, - [1670] = 1622, - [1671] = 1611, - [1672] = 1621, - [1673] = 1603, - [1674] = 1618, - [1675] = 1607, - [1676] = 1618, - [1677] = 1605, - [1678] = 1616, - [1679] = 1638, - [1680] = 1605, - [1681] = 1616, - [1682] = 1682, - [1683] = 1683, - [1684] = 1621, - [1685] = 1685, - [1686] = 1686, - [1687] = 1687, - [1688] = 1616, - [1689] = 1689, - [1690] = 1690, - [1691] = 1629, - [1692] = 1604, - [1693] = 1693, + [1670] = 1670, + [1671] = 1671, + [1672] = 1604, + [1673] = 1673, + [1674] = 1621, + [1675] = 1675, + [1676] = 1666, + [1677] = 1612, + [1678] = 1612, + [1679] = 1604, + [1680] = 1611, + [1681] = 1613, + [1682] = 1614, + [1683] = 1606, + [1684] = 1634, + [1685] = 1633, + [1686] = 1632, + [1687] = 1612, + [1688] = 1621, + [1689] = 1604, + [1690] = 1656, + [1691] = 1611, + [1692] = 1613, + [1693] = 1643, + [1694] = 1617, + [1695] = 1614, + [1696] = 1621, }; static TSCharacterRange extras_character_set_1[] = { @@ -6220,618 +6230,631 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { 'g', 7, 'i', 8, 'l', 9, - 'n', 10, - 'o', 11, - 'r', 12, - 's', 13, - 't', 14, - 'u', 15, - 'v', 16, - 'w', 17, - 'y', 18, + 'm', 10, + 'n', 11, + 'o', 12, + 'r', 13, + 's', 14, + 't', 15, + 'u', 16, + 'v', 17, + 'w', 18, + 'y', 19, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(0); END_STATE(); case 1: - if (lookahead == 's') ADVANCE(19); - if (lookahead == 'w') ADVANCE(20); + if (lookahead == 's') ADVANCE(20); + if (lookahead == 'w') ADVANCE(21); END_STATE(); case 2: - if (lookahead == 'r') ADVANCE(21); + if (lookahead == 'r') ADVANCE(22); END_STATE(); case 3: - if (lookahead == 'a') ADVANCE(22); - if (lookahead == 'l') ADVANCE(23); - if (lookahead == 'o') ADVANCE(24); + if (lookahead == 'a') ADVANCE(23); + if (lookahead == 'l') ADVANCE(24); + if (lookahead == 'o') ADVANCE(25); END_STATE(); case 4: - if (lookahead == 'e') ADVANCE(25); - if (lookahead == 'o') ADVANCE(26); + if (lookahead == 'e') ADVANCE(26); + if (lookahead == 'o') ADVANCE(27); END_STATE(); case 5: - if (lookahead == 'l') ADVANCE(27); - if (lookahead == 'x') ADVANCE(28); + if (lookahead == 'l') ADVANCE(28); + if (lookahead == 'x') ADVANCE(29); END_STATE(); case 6: - if (lookahead == 'a') ADVANCE(29); - if (lookahead == 'i') ADVANCE(30); - if (lookahead == 'o') ADVANCE(31); - if (lookahead == 'r') ADVANCE(32); - if (lookahead == 'u') ADVANCE(33); + if (lookahead == 'a') ADVANCE(30); + if (lookahead == 'i') ADVANCE(31); + if (lookahead == 'o') ADVANCE(32); + if (lookahead == 'r') ADVANCE(33); + if (lookahead == 'u') ADVANCE(34); END_STATE(); case 7: - if (lookahead == 'e') ADVANCE(34); + if (lookahead == 'e') ADVANCE(35); END_STATE(); case 8: - if (lookahead == 'f') ADVANCE(35); - if (lookahead == 'm') ADVANCE(36); - if (lookahead == 'n') ADVANCE(37); + if (lookahead == 'f') ADVANCE(36); + if (lookahead == 'm') ADVANCE(37); + if (lookahead == 'n') ADVANCE(38); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(38); + if (lookahead == 'e') ADVANCE(39); END_STATE(); case 10: - if (lookahead == 'e') ADVANCE(39); - if (lookahead == 'u') ADVANCE(40); + if (lookahead == 'e') ADVANCE(40); END_STATE(); case 11: - if (lookahead == 'f') ADVANCE(41); + if (lookahead == 'e') ADVANCE(41); + if (lookahead == 'u') ADVANCE(42); END_STATE(); case 12: - if (lookahead == 'e') ADVANCE(42); + if (lookahead == 'f') ADVANCE(43); END_STATE(); case 13: - if (lookahead == 'e') ADVANCE(43); - if (lookahead == 't') ADVANCE(44); - if (lookahead == 'u') ADVANCE(45); - if (lookahead == 'w') ADVANCE(46); + if (lookahead == 'e') ADVANCE(44); END_STATE(); case 14: - if (lookahead == 'a') ADVANCE(47); - if (lookahead == 'h') ADVANCE(48); - if (lookahead == 'r') ADVANCE(49); - if (lookahead == 'y') ADVANCE(50); + if (lookahead == 'e') ADVANCE(45); + if (lookahead == 't') ADVANCE(46); + if (lookahead == 'u') ADVANCE(47); + if (lookahead == 'w') ADVANCE(48); END_STATE(); case 15: - if (lookahead == 'n') ADVANCE(51); + if (lookahead == 'a') ADVANCE(49); + if (lookahead == 'h') ADVANCE(50); + if (lookahead == 'r') ADVANCE(51); + if (lookahead == 'y') ADVANCE(52); END_STATE(); case 16: - if (lookahead == 'a') ADVANCE(52); - if (lookahead == 'o') ADVANCE(53); + if (lookahead == 'n') ADVANCE(53); END_STATE(); case 17: - if (lookahead == 'h') ADVANCE(54); - if (lookahead == 'i') ADVANCE(55); + if (lookahead == 'a') ADVANCE(54); + if (lookahead == 'o') ADVANCE(55); END_STATE(); case 18: - if (lookahead == 'i') ADVANCE(56); + if (lookahead == 'h') ADVANCE(56); + if (lookahead == 'i') ADVANCE(57); END_STATE(); case 19: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(57); + if (lookahead == 'i') ADVANCE(58); END_STATE(); case 20: - if (lookahead == 'a') ADVANCE(58); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'y') ADVANCE(59); END_STATE(); case 21: - if (lookahead == 'e') ADVANCE(59); + if (lookahead == 'a') ADVANCE(60); END_STATE(); case 22: - if (lookahead == 's') ADVANCE(60); - if (lookahead == 't') ADVANCE(61); + if (lookahead == 'e') ADVANCE(61); END_STATE(); case 23: - if (lookahead == 'a') ADVANCE(62); + if (lookahead == 's') ADVANCE(62); + if (lookahead == 't') ADVANCE(63); END_STATE(); case 24: - if (lookahead == 'n') ADVANCE(63); + if (lookahead == 'a') ADVANCE(64); END_STATE(); case 25: - if (lookahead == 'b') ADVANCE(64); - if (lookahead == 'f') ADVANCE(65); - if (lookahead == 'l') ADVANCE(66); + if (lookahead == 'n') ADVANCE(65); END_STATE(); case 26: - ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'b') ADVANCE(66); + if (lookahead == 'f') ADVANCE(67); + if (lookahead == 'l') ADVANCE(68); END_STATE(); case 27: - if (lookahead == 's') ADVANCE(67); + ACCEPT_TOKEN(anon_sym_do); END_STATE(); case 28: - if (lookahead == 'p') ADVANCE(68); - if (lookahead == 't') ADVANCE(69); + if (lookahead == 's') ADVANCE(69); END_STATE(); case 29: - if (lookahead == 'l') ADVANCE(70); + if (lookahead == 'p') ADVANCE(70); + if (lookahead == 't') ADVANCE(71); END_STATE(); case 30: - if (lookahead == 'n') ADVANCE(71); + if (lookahead == 'l') ADVANCE(72); END_STATE(); case 31: - if (lookahead == 'r') ADVANCE(72); + if (lookahead == 'n') ADVANCE(73); END_STATE(); case 32: - if (lookahead == 'o') ADVANCE(73); + if (lookahead == 'r') ADVANCE(74); END_STATE(); case 33: - if (lookahead == 'n') ADVANCE(74); + if (lookahead == 'o') ADVANCE(75); END_STATE(); case 34: - if (lookahead == 't') ADVANCE(75); + if (lookahead == 'n') ADVANCE(76); END_STATE(); case 35: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 't') ADVANCE(77); END_STATE(); case 36: - if (lookahead == 'p') ADVANCE(76); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 37: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 's') ADVANCE(77); + if (lookahead == 'p') ADVANCE(78); END_STATE(); case 38: - if (lookahead == 't') ADVANCE(78); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 's') ADVANCE(79); END_STATE(); case 39: - if (lookahead == 'w') ADVANCE(79); + if (lookahead == 't') ADVANCE(80); END_STATE(); case 40: - if (lookahead == 'l') ADVANCE(80); + if (lookahead == 't') ADVANCE(81); END_STATE(); case 41: - ACCEPT_TOKEN(anon_sym_of); + if (lookahead == 'w') ADVANCE(82); END_STATE(); case 42: - if (lookahead == 't') ADVANCE(81); + if (lookahead == 'l') ADVANCE(83); END_STATE(); case 43: - if (lookahead == 't') ADVANCE(82); + ACCEPT_TOKEN(anon_sym_of); END_STATE(); case 44: - if (lookahead == 'a') ADVANCE(83); + if (lookahead == 't') ADVANCE(84); END_STATE(); case 45: - if (lookahead == 'p') ADVANCE(84); + if (lookahead == 't') ADVANCE(85); END_STATE(); case 46: - if (lookahead == 'i') ADVANCE(85); + if (lookahead == 'a') ADVANCE(86); END_STATE(); case 47: - if (lookahead == 'r') ADVANCE(86); + if (lookahead == 'p') ADVANCE(87); END_STATE(); case 48: - if (lookahead == 'i') ADVANCE(87); - if (lookahead == 'r') ADVANCE(88); + if (lookahead == 'i') ADVANCE(88); END_STATE(); case 49: - if (lookahead == 'u') ADVANCE(89); - if (lookahead == 'y') ADVANCE(90); + if (lookahead == 'r') ADVANCE(89); END_STATE(); case 50: - if (lookahead == 'p') ADVANCE(91); + if (lookahead == 'i') ADVANCE(90); + if (lookahead == 'r') ADVANCE(91); END_STATE(); case 51: - if (lookahead == 'd') ADVANCE(92); + if (lookahead == 'u') ADVANCE(92); + if (lookahead == 'y') ADVANCE(93); END_STATE(); case 52: - if (lookahead == 'r') ADVANCE(93); + if (lookahead == 'p') ADVANCE(94); END_STATE(); case 53: - if (lookahead == 'i') ADVANCE(94); + if (lookahead == 'd') ADVANCE(95); END_STATE(); case 54: - if (lookahead == 'i') ADVANCE(95); + if (lookahead == 'r') ADVANCE(96); END_STATE(); case 55: - if (lookahead == 't') ADVANCE(96); + if (lookahead == 'i') ADVANCE(97); END_STATE(); case 56: - if (lookahead == 'e') ADVANCE(97); + if (lookahead == 'i') ADVANCE(98); END_STATE(); case 57: - if (lookahead == 'n') ADVANCE(98); + if (lookahead == 't') ADVANCE(99); END_STATE(); case 58: - if (lookahead == 'i') ADVANCE(99); + if (lookahead == 'e') ADVANCE(100); END_STATE(); case 59: - if (lookahead == 'a') ADVANCE(100); + if (lookahead == 'n') ADVANCE(101); END_STATE(); case 60: - if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'i') ADVANCE(102); END_STATE(); case 61: - if (lookahead == 'c') ADVANCE(102); + if (lookahead == 'a') ADVANCE(103); END_STATE(); case 62: - if (lookahead == 's') ADVANCE(103); + if (lookahead == 'e') ADVANCE(104); END_STATE(); case 63: - if (lookahead == 's') ADVANCE(104); - if (lookahead == 't') ADVANCE(105); + if (lookahead == 'c') ADVANCE(105); END_STATE(); case 64: - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 's') ADVANCE(106); END_STATE(); case 65: - if (lookahead == 'a') ADVANCE(107); + if (lookahead == 's') ADVANCE(107); + if (lookahead == 't') ADVANCE(108); END_STATE(); case 66: - if (lookahead == 'e') ADVANCE(108); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 67: - if (lookahead == 'e') ADVANCE(109); + if (lookahead == 'a') ADVANCE(110); END_STATE(); case 68: - if (lookahead == 'o') ADVANCE(110); + if (lookahead == 'e') ADVANCE(111); END_STATE(); case 69: - if (lookahead == 'e') ADVANCE(111); + if (lookahead == 'e') ADVANCE(112); END_STATE(); case 70: - if (lookahead == 's') ADVANCE(112); + if (lookahead == 'o') ADVANCE(113); END_STATE(); case 71: - if (lookahead == 'a') ADVANCE(113); + if (lookahead == 'e') ADVANCE(114); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 's') ADVANCE(115); END_STATE(); case 73: - if (lookahead == 'm') ADVANCE(114); + if (lookahead == 'a') ADVANCE(116); END_STATE(); case 74: - if (lookahead == 'c') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_get); + if (lookahead == 'm') ADVANCE(117); END_STATE(); case 76: - if (lookahead == 'o') ADVANCE(116); + if (lookahead == 'c') ADVANCE(118); END_STATE(); case 77: - if (lookahead == 't') ADVANCE(117); + ACCEPT_TOKEN(anon_sym_get); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_let); + if (lookahead == 'o') ADVANCE(119); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_new); + if (lookahead == 't') ADVANCE(120); END_STATE(); case 80: - if (lookahead == 'l') ADVANCE(118); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 81: - if (lookahead == 'u') ADVANCE(119); + if (lookahead == 'a') ADVANCE(121); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_set); + ACCEPT_TOKEN(anon_sym_new); END_STATE(); case 83: - if (lookahead == 't') ADVANCE(120); + if (lookahead == 'l') ADVANCE(122); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(121); + if (lookahead == 'u') ADVANCE(123); END_STATE(); case 85: - if (lookahead == 't') ADVANCE(122); + ACCEPT_TOKEN(anon_sym_set); END_STATE(); case 86: - if (lookahead == 'g') ADVANCE(123); + if (lookahead == 't') ADVANCE(124); END_STATE(); case 87: - if (lookahead == 's') ADVANCE(124); + if (lookahead == 'e') ADVANCE(125); END_STATE(); case 88: - if (lookahead == 'o') ADVANCE(125); + if (lookahead == 't') ADVANCE(126); END_STATE(); case 89: - if (lookahead == 'e') ADVANCE(126); + if (lookahead == 'g') ADVANCE(127); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 's') ADVANCE(128); END_STATE(); case 91: - if (lookahead == 'e') ADVANCE(127); + if (lookahead == 'o') ADVANCE(129); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(128); + if (lookahead == 'e') ADVANCE(130); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_var); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 94: - if (lookahead == 'd') ADVANCE(129); + if (lookahead == 'e') ADVANCE(131); END_STATE(); case 95: - if (lookahead == 'l') ADVANCE(130); + if (lookahead == 'e') ADVANCE(132); END_STATE(); case 96: - if (lookahead == 'h') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_var); END_STATE(); case 97: - if (lookahead == 'l') ADVANCE(132); + if (lookahead == 'd') ADVANCE(133); END_STATE(); case 98: - if (lookahead == 'c') ADVANCE(133); + if (lookahead == 'l') ADVANCE(134); END_STATE(); case 99: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'h') ADVANCE(135); END_STATE(); case 100: - if (lookahead == 'k') ADVANCE(135); + if (lookahead == 'l') ADVANCE(136); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'c') ADVANCE(137); END_STATE(); case 102: - if (lookahead == 'h') ADVANCE(136); + if (lookahead == 't') ADVANCE(138); END_STATE(); case 103: - if (lookahead == 's') ADVANCE(137); + if (lookahead == 'k') ADVANCE(139); END_STATE(); case 104: - if (lookahead == 't') ADVANCE(138); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 105: - if (lookahead == 'i') ADVANCE(139); + if (lookahead == 'h') ADVANCE(140); END_STATE(); case 106: - if (lookahead == 'g') ADVANCE(140); + if (lookahead == 's') ADVANCE(141); END_STATE(); case 107: - if (lookahead == 'u') ADVANCE(141); + if (lookahead == 't') ADVANCE(142); END_STATE(); case 108: - if (lookahead == 't') ADVANCE(142); + if (lookahead == 'i') ADVANCE(143); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'g') ADVANCE(144); END_STATE(); case 110: - if (lookahead == 'r') ADVANCE(143); + if (lookahead == 'u') ADVANCE(145); END_STATE(); case 111: - if (lookahead == 'n') ADVANCE(144); + if (lookahead == 't') ADVANCE(146); END_STATE(); case 112: - if (lookahead == 'e') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 113: - if (lookahead == 'l') ADVANCE(146); + if (lookahead == 'r') ADVANCE(147); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_from); + if (lookahead == 'n') ADVANCE(148); END_STATE(); case 115: - if (lookahead == 't') ADVANCE(147); + if (lookahead == 'e') ADVANCE(149); END_STATE(); case 116: - if (lookahead == 'r') ADVANCE(148); + if (lookahead == 'l') ADVANCE(150); END_STATE(); case 117: - if (lookahead == 'a') ADVANCE(149); + ACCEPT_TOKEN(anon_sym_from); END_STATE(); case 118: - ACCEPT_TOKEN(sym_null); + if (lookahead == 't') ADVANCE(151); END_STATE(); case 119: - if (lookahead == 'r') ADVANCE(150); + if (lookahead == 'r') ADVANCE(152); END_STATE(); case 120: - if (lookahead == 'i') ADVANCE(151); + if (lookahead == 'a') ADVANCE(153); END_STATE(); case 121: - if (lookahead == 'r') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_meta); END_STATE(); case 122: - if (lookahead == 'c') ADVANCE(153); + ACCEPT_TOKEN(sym_null); END_STATE(); case 123: - if (lookahead == 'e') ADVANCE(154); + if (lookahead == 'r') ADVANCE(154); END_STATE(); case 124: - ACCEPT_TOKEN(sym_this); + if (lookahead == 'i') ADVANCE(155); END_STATE(); case 125: - if (lookahead == 'w') ADVANCE(155); + if (lookahead == 'r') ADVANCE(156); END_STATE(); case 126: - ACCEPT_TOKEN(sym_true); + if (lookahead == 'c') ADVANCE(157); END_STATE(); case 127: - if (lookahead == 'o') ADVANCE(156); + if (lookahead == 'e') ADVANCE(158); END_STATE(); case 128: - if (lookahead == 'f') ADVANCE(157); + ACCEPT_TOKEN(sym_this); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_void); + if (lookahead == 'w') ADVANCE(159); END_STATE(); case 130: - if (lookahead == 'e') ADVANCE(158); + ACCEPT_TOKEN(sym_true); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_with); + if (lookahead == 'o') ADVANCE(160); END_STATE(); case 132: - if (lookahead == 'd') ADVANCE(159); + if (lookahead == 'f') ADVANCE(161); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_async); + ACCEPT_TOKEN(anon_sym_void); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_await); + if (lookahead == 'e') ADVANCE(162); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_with); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == 'd') ADVANCE(163); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_class); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 139: - if (lookahead == 'n') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 140: - if (lookahead == 'g') ADVANCE(161); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 141: - if (lookahead == 'l') ADVANCE(162); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 142: - if (lookahead == 'e') ADVANCE(163); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 143: - if (lookahead == 't') ADVANCE(164); + if (lookahead == 'n') ADVANCE(164); END_STATE(); case 144: - if (lookahead == 'd') ADVANCE(165); + if (lookahead == 'g') ADVANCE(165); END_STATE(); case 145: - ACCEPT_TOKEN(sym_false); + if (lookahead == 'l') ADVANCE(166); END_STATE(); case 146: - if (lookahead == 'l') ADVANCE(166); + if (lookahead == 'e') ADVANCE(167); END_STATE(); case 147: - if (lookahead == 'i') ADVANCE(167); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 148: - if (lookahead == 't') ADVANCE(168); + if (lookahead == 'd') ADVANCE(169); END_STATE(); case 149: - if (lookahead == 'n') ADVANCE(169); + ACCEPT_TOKEN(sym_false); END_STATE(); case 150: - if (lookahead == 'n') ADVANCE(170); + if (lookahead == 'l') ADVANCE(170); END_STATE(); case 151: - if (lookahead == 'c') ADVANCE(171); + if (lookahead == 'i') ADVANCE(171); END_STATE(); case 152: - ACCEPT_TOKEN(sym_super); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 153: - if (lookahead == 'h') ADVANCE(172); + if (lookahead == 'n') ADVANCE(173); END_STATE(); case 154: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 'n') ADVANCE(174); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_throw); + if (lookahead == 'c') ADVANCE(175); END_STATE(); case 156: - if (lookahead == 'f') ADVANCE(174); + ACCEPT_TOKEN(sym_super); END_STATE(); case 157: - if (lookahead == 'i') ADVANCE(175); + if (lookahead == 'h') ADVANCE(176); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_yield); + ACCEPT_TOKEN(anon_sym_throw); END_STATE(); case 160: - if (lookahead == 'u') ADVANCE(176); + if (lookahead == 'f') ADVANCE(178); END_STATE(); case 161: - if (lookahead == 'e') ADVANCE(177); + if (lookahead == 'i') ADVANCE(179); END_STATE(); case 162: - if (lookahead == 't') ADVANCE(178); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_delete); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_export); + if (lookahead == 'u') ADVANCE(180); END_STATE(); case 165: - if (lookahead == 's') ADVANCE(179); + if (lookahead == 'e') ADVANCE(181); END_STATE(); case 166: - if (lookahead == 'y') ADVANCE(180); + if (lookahead == 't') ADVANCE(182); END_STATE(); case 167: - if (lookahead == 'o') ADVANCE(181); + ACCEPT_TOKEN(anon_sym_delete); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_import); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 169: - if (lookahead == 'c') ADVANCE(182); + if (lookahead == 's') ADVANCE(183); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'y') ADVANCE(184); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'o') ADVANCE(185); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_switch); + ACCEPT_TOKEN(anon_sym_import); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_target); + if (lookahead == 'c') ADVANCE(186); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_typeof); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 175: - if (lookahead == 'n') ADVANCE(183); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 176: - if (lookahead == 'e') ADVANCE(184); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 177: - if (lookahead == 'r') ADVANCE(185); + ACCEPT_TOKEN(anon_sym_target); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_default); + ACCEPT_TOKEN(anon_sym_typeof); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_extends); + if (lookahead == 'n') ADVANCE(187); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_finally); + if (lookahead == 'e') ADVANCE(188); END_STATE(); case 181: - if (lookahead == 'n') ADVANCE(186); + if (lookahead == 'r') ADVANCE(189); END_STATE(); case 182: - if (lookahead == 'e') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 183: - if (lookahead == 'e') ADVANCE(188); + ACCEPT_TOKEN(anon_sym_extends); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_debugger); + if (lookahead == 'n') ADVANCE(190); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_function); + if (lookahead == 'e') ADVANCE(191); END_STATE(); case 187: - if (lookahead == 'o') ADVANCE(189); + if (lookahead == 'e') ADVANCE(192); END_STATE(); case 188: - if (lookahead == 'd') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 189: - if (lookahead == 'f') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_debugger); END_STATE(); case 190: - ACCEPT_TOKEN(sym_undefined); + ACCEPT_TOKEN(anon_sym_function); END_STATE(); case 191: + if (lookahead == 'o') ADVANCE(193); + END_STATE(); + case 192: + if (lookahead == 'd') ADVANCE(194); + END_STATE(); + case 193: + if (lookahead == 'f') ADVANCE(195); + END_STATE(); + case 194: + ACCEPT_TOKEN(sym_undefined); + END_STATE(); + case 195: ACCEPT_TOKEN(anon_sym_instanceof); END_STATE(); default: @@ -6893,25 +6916,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [50] = {.lex_state = 145, .external_lex_state = 3}, [51] = {.lex_state = 145, .external_lex_state = 4}, [52] = {.lex_state = 145, .external_lex_state = 4}, - [53] = {.lex_state = 145, .external_lex_state = 4}, - [54] = {.lex_state = 145, .external_lex_state = 4}, + [53] = {.lex_state = 146, .external_lex_state = 2}, + [54] = {.lex_state = 146, .external_lex_state = 2}, [55] = {.lex_state = 145, .external_lex_state = 4}, [56] = {.lex_state = 145, .external_lex_state = 4}, - [57] = {.lex_state = 146, .external_lex_state = 2}, + [57] = {.lex_state = 145, .external_lex_state = 4}, [58] = {.lex_state = 145, .external_lex_state = 4}, [59] = {.lex_state = 145, .external_lex_state = 4}, - [60] = {.lex_state = 145, .external_lex_state = 4}, + [60] = {.lex_state = 146, .external_lex_state = 2}, [61] = {.lex_state = 146, .external_lex_state = 2}, [62] = {.lex_state = 146, .external_lex_state = 2}, - [63] = {.lex_state = 146, .external_lex_state = 2}, - [64] = {.lex_state = 145, .external_lex_state = 4}, - [65] = {.lex_state = 146, .external_lex_state = 2}, - [66] = {.lex_state = 146, .external_lex_state = 2}, + [63] = {.lex_state = 145, .external_lex_state = 4}, + [64] = {.lex_state = 146, .external_lex_state = 2}, + [65] = {.lex_state = 145, .external_lex_state = 4}, + [66] = {.lex_state = 145, .external_lex_state = 4}, [67] = {.lex_state = 145, .external_lex_state = 4}, - [68] = {.lex_state = 145, .external_lex_state = 4}, + [68] = {.lex_state = 146, .external_lex_state = 2}, [69] = {.lex_state = 146, .external_lex_state = 2}, [70] = {.lex_state = 145, .external_lex_state = 4}, - [71] = {.lex_state = 146, .external_lex_state = 2}, + [71] = {.lex_state = 145, .external_lex_state = 4}, [72] = {.lex_state = 145, .external_lex_state = 4}, [73] = {.lex_state = 145, .external_lex_state = 4}, [74] = {.lex_state = 146, .external_lex_state = 2}, @@ -6948,7 +6971,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [105] = {.lex_state = 146, .external_lex_state = 2}, [106] = {.lex_state = 146, .external_lex_state = 2}, [107] = {.lex_state = 146, .external_lex_state = 2}, - [108] = {.lex_state = 146, .external_lex_state = 2}, + [108] = {.lex_state = 7, .external_lex_state = 2}, [109] = {.lex_state = 146, .external_lex_state = 2}, [110] = {.lex_state = 146, .external_lex_state = 2}, [111] = {.lex_state = 146, .external_lex_state = 2}, @@ -6957,17 +6980,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [114] = {.lex_state = 146, .external_lex_state = 2}, [115] = {.lex_state = 146, .external_lex_state = 2}, [116] = {.lex_state = 146, .external_lex_state = 2}, - [117] = {.lex_state = 7, .external_lex_state = 2}, + [117] = {.lex_state = 146, .external_lex_state = 2}, [118] = {.lex_state = 146, .external_lex_state = 2}, - [119] = {.lex_state = 146, .external_lex_state = 2}, + [119] = {.lex_state = 7, .external_lex_state = 2}, [120] = {.lex_state = 146, .external_lex_state = 2}, - [121] = {.lex_state = 146, .external_lex_state = 2}, + [121] = {.lex_state = 7, .external_lex_state = 2}, [122] = {.lex_state = 146, .external_lex_state = 2}, [123] = {.lex_state = 146, .external_lex_state = 2}, [124] = {.lex_state = 146, .external_lex_state = 2}, [125] = {.lex_state = 146, .external_lex_state = 2}, [126] = {.lex_state = 146, .external_lex_state = 2}, - [127] = {.lex_state = 7, .external_lex_state = 2}, + [127] = {.lex_state = 146, .external_lex_state = 2}, [128] = {.lex_state = 146, .external_lex_state = 2}, [129] = {.lex_state = 146, .external_lex_state = 2}, [130] = {.lex_state = 146, .external_lex_state = 2}, @@ -6975,8 +6998,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [132] = {.lex_state = 146, .external_lex_state = 2}, [133] = {.lex_state = 146, .external_lex_state = 2}, [134] = {.lex_state = 146, .external_lex_state = 2}, - [135] = {.lex_state = 146, .external_lex_state = 2}, - [136] = {.lex_state = 146, .external_lex_state = 2}, + [135] = {.lex_state = 7, .external_lex_state = 2}, + [136] = {.lex_state = 7, .external_lex_state = 2}, [137] = {.lex_state = 146, .external_lex_state = 2}, [138] = {.lex_state = 146, .external_lex_state = 2}, [139] = {.lex_state = 146, .external_lex_state = 2}, @@ -6984,7 +7007,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [141] = {.lex_state = 146, .external_lex_state = 2}, [142] = {.lex_state = 146, .external_lex_state = 2}, [143] = {.lex_state = 146, .external_lex_state = 2}, - [144] = {.lex_state = 7, .external_lex_state = 2}, + [144] = {.lex_state = 146, .external_lex_state = 2}, [145] = {.lex_state = 146, .external_lex_state = 2}, [146] = {.lex_state = 146, .external_lex_state = 2}, [147] = {.lex_state = 146, .external_lex_state = 2}, @@ -6992,8 +7015,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [149] = {.lex_state = 146, .external_lex_state = 2}, [150] = {.lex_state = 146, .external_lex_state = 2}, [151] = {.lex_state = 146, .external_lex_state = 2}, - [152] = {.lex_state = 7, .external_lex_state = 2}, - [153] = {.lex_state = 7, .external_lex_state = 2}, + [152] = {.lex_state = 146, .external_lex_state = 2}, + [153] = {.lex_state = 146, .external_lex_state = 2}, [154] = {.lex_state = 146, .external_lex_state = 2}, [155] = {.lex_state = 146, .external_lex_state = 2}, [156] = {.lex_state = 146, .external_lex_state = 2}, @@ -7131,52 +7154,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [288] = {.lex_state = 8, .external_lex_state = 4}, [289] = {.lex_state = 8, .external_lex_state = 4}, [290] = {.lex_state = 8, .external_lex_state = 4}, - [291] = {.lex_state = 146, .external_lex_state = 2}, + [291] = {.lex_state = 8, .external_lex_state = 3}, [292] = {.lex_state = 8, .external_lex_state = 3}, - [293] = {.lex_state = 8, .external_lex_state = 3}, + [293] = {.lex_state = 146, .external_lex_state = 5}, [294] = {.lex_state = 146, .external_lex_state = 5}, - [295] = {.lex_state = 146, .external_lex_state = 5}, + [295] = {.lex_state = 146, .external_lex_state = 2}, [296] = {.lex_state = 8, .external_lex_state = 4}, - [297] = {.lex_state = 8, .external_lex_state = 4}, + [297] = {.lex_state = 8, .external_lex_state = 3}, [298] = {.lex_state = 8, .external_lex_state = 3}, [299] = {.lex_state = 8, .external_lex_state = 4}, - [300] = {.lex_state = 8, .external_lex_state = 3}, - [301] = {.lex_state = 8, .external_lex_state = 4}, - [302] = {.lex_state = 8, .external_lex_state = 3}, + [300] = {.lex_state = 8, .external_lex_state = 4}, + [301] = {.lex_state = 8, .external_lex_state = 3}, + [302] = {.lex_state = 8, .external_lex_state = 4}, [303] = {.lex_state = 8, .external_lex_state = 4}, [304] = {.lex_state = 8, .external_lex_state = 4}, [305] = {.lex_state = 146, .external_lex_state = 2}, - [306] = {.lex_state = 146, .external_lex_state = 2}, + [306] = {.lex_state = 8, .external_lex_state = 4}, [307] = {.lex_state = 8, .external_lex_state = 4}, - [308] = {.lex_state = 8, .external_lex_state = 4}, + [308] = {.lex_state = 146, .external_lex_state = 2}, [309] = {.lex_state = 8, .external_lex_state = 4}, [310] = {.lex_state = 8, .external_lex_state = 4}, - [311] = {.lex_state = 8, .external_lex_state = 3}, - [312] = {.lex_state = 146, .external_lex_state = 2}, - [313] = {.lex_state = 8, .external_lex_state = 3}, - [314] = {.lex_state = 146, .external_lex_state = 5}, - [315] = {.lex_state = 8, .external_lex_state = 3}, + [311] = {.lex_state = 146, .external_lex_state = 2}, + [312] = {.lex_state = 8, .external_lex_state = 3}, + [313] = {.lex_state = 146, .external_lex_state = 5}, + [314] = {.lex_state = 146, .external_lex_state = 2}, + [315] = {.lex_state = 146, .external_lex_state = 2}, [316] = {.lex_state = 146, .external_lex_state = 5}, [317] = {.lex_state = 146, .external_lex_state = 5}, [318] = {.lex_state = 146, .external_lex_state = 5}, - [319] = {.lex_state = 146, .external_lex_state = 5}, - [320] = {.lex_state = 146, .external_lex_state = 5}, - [321] = {.lex_state = 8, .external_lex_state = 4}, - [322] = {.lex_state = 146, .external_lex_state = 5}, + [319] = {.lex_state = 8, .external_lex_state = 3}, + [320] = {.lex_state = 8, .external_lex_state = 4}, + [321] = {.lex_state = 146, .external_lex_state = 5}, + [322] = {.lex_state = 146, .external_lex_state = 2}, [323] = {.lex_state = 146, .external_lex_state = 5}, - [324] = {.lex_state = 146, .external_lex_state = 2}, - [325] = {.lex_state = 146, .external_lex_state = 2}, - [326] = {.lex_state = 146, .external_lex_state = 2}, + [324] = {.lex_state = 146, .external_lex_state = 5}, + [325] = {.lex_state = 146, .external_lex_state = 5}, + [326] = {.lex_state = 146, .external_lex_state = 5}, [327] = {.lex_state = 146, .external_lex_state = 2}, [328] = {.lex_state = 146, .external_lex_state = 5}, - [329] = {.lex_state = 146, .external_lex_state = 2}, - [330] = {.lex_state = 146, .external_lex_state = 5}, - [331] = {.lex_state = 8, .external_lex_state = 4}, - [332] = {.lex_state = 146, .external_lex_state = 5}, + [329] = {.lex_state = 146, .external_lex_state = 5}, + [330] = {.lex_state = 8, .external_lex_state = 4}, + [331] = {.lex_state = 146, .external_lex_state = 5}, + [332] = {.lex_state = 146, .external_lex_state = 2}, [333] = {.lex_state = 146, .external_lex_state = 5}, [334] = {.lex_state = 146, .external_lex_state = 5}, [335] = {.lex_state = 146, .external_lex_state = 5}, - [336] = {.lex_state = 146, .external_lex_state = 5}, + [336] = {.lex_state = 8, .external_lex_state = 3}, [337] = {.lex_state = 146, .external_lex_state = 5}, [338] = {.lex_state = 146, .external_lex_state = 2}, [339] = {.lex_state = 146, .external_lex_state = 2}, @@ -7189,43 +7212,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [346] = {.lex_state = 146, .external_lex_state = 2}, [347] = {.lex_state = 146, .external_lex_state = 2}, [348] = {.lex_state = 146, .external_lex_state = 2}, - [349] = {.lex_state = 146, .external_lex_state = 2}, + [349] = {.lex_state = 8, .external_lex_state = 4}, [350] = {.lex_state = 146, .external_lex_state = 2}, [351] = {.lex_state = 146, .external_lex_state = 2}, [352] = {.lex_state = 146, .external_lex_state = 2}, [353] = {.lex_state = 146, .external_lex_state = 2}, - [354] = {.lex_state = 146, .external_lex_state = 2}, - [355] = {.lex_state = 146, .external_lex_state = 2}, + [354] = {.lex_state = 8, .external_lex_state = 3}, + [355] = {.lex_state = 8, .external_lex_state = 3}, [356] = {.lex_state = 146, .external_lex_state = 2}, [357] = {.lex_state = 146, .external_lex_state = 2}, [358] = {.lex_state = 146, .external_lex_state = 2}, [359] = {.lex_state = 146, .external_lex_state = 2}, [360] = {.lex_state = 146, .external_lex_state = 2}, - [361] = {.lex_state = 8, .external_lex_state = 4}, + [361] = {.lex_state = 146, .external_lex_state = 2}, [362] = {.lex_state = 146, .external_lex_state = 2}, [363] = {.lex_state = 146, .external_lex_state = 2}, [364] = {.lex_state = 146, .external_lex_state = 2}, [365] = {.lex_state = 146, .external_lex_state = 2}, [366] = {.lex_state = 146, .external_lex_state = 2}, [367] = {.lex_state = 146, .external_lex_state = 2}, - [368] = {.lex_state = 8, .external_lex_state = 3}, + [368] = {.lex_state = 146, .external_lex_state = 2}, [369] = {.lex_state = 146, .external_lex_state = 2}, [370] = {.lex_state = 146, .external_lex_state = 2}, [371] = {.lex_state = 146, .external_lex_state = 2}, [372] = {.lex_state = 146, .external_lex_state = 2}, [373] = {.lex_state = 146, .external_lex_state = 2}, [374] = {.lex_state = 146, .external_lex_state = 2}, - [375] = {.lex_state = 8, .external_lex_state = 4}, + [375] = {.lex_state = 146, .external_lex_state = 2}, [376] = {.lex_state = 146, .external_lex_state = 2}, - [377] = {.lex_state = 8, .external_lex_state = 4}, + [377] = {.lex_state = 146, .external_lex_state = 2}, [378] = {.lex_state = 146, .external_lex_state = 2}, - [379] = {.lex_state = 146, .external_lex_state = 2}, + [379] = {.lex_state = 8, .external_lex_state = 4}, [380] = {.lex_state = 146, .external_lex_state = 2}, [381] = {.lex_state = 146, .external_lex_state = 2}, [382] = {.lex_state = 146, .external_lex_state = 2}, [383] = {.lex_state = 146, .external_lex_state = 2}, [384] = {.lex_state = 146, .external_lex_state = 2}, - [385] = {.lex_state = 146, .external_lex_state = 2}, + [385] = {.lex_state = 8, .external_lex_state = 4}, [386] = {.lex_state = 146, .external_lex_state = 2}, [387] = {.lex_state = 146, .external_lex_state = 2}, [388] = {.lex_state = 146, .external_lex_state = 2}, @@ -7237,9 +7260,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [394] = {.lex_state = 146, .external_lex_state = 2}, [395] = {.lex_state = 146, .external_lex_state = 2}, [396] = {.lex_state = 146, .external_lex_state = 2}, - [397] = {.lex_state = 8, .external_lex_state = 3}, - [398] = {.lex_state = 146, .external_lex_state = 2}, - [399] = {.lex_state = 8, .external_lex_state = 3}, + [397] = {.lex_state = 146, .external_lex_state = 2}, + [398] = {.lex_state = 8, .external_lex_state = 3}, + [399] = {.lex_state = 146, .external_lex_state = 2}, [400] = {.lex_state = 146, .external_lex_state = 2}, [401] = {.lex_state = 146, .external_lex_state = 2}, [402] = {.lex_state = 8, .external_lex_state = 4}, @@ -7258,52 +7281,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [415] = {.lex_state = 146, .external_lex_state = 2}, [416] = {.lex_state = 8, .external_lex_state = 3}, [417] = {.lex_state = 8, .external_lex_state = 3}, - [418] = {.lex_state = 8, .external_lex_state = 3}, - [419] = {.lex_state = 8, .external_lex_state = 3}, - [420] = {.lex_state = 146, .external_lex_state = 2}, - [421] = {.lex_state = 146, .external_lex_state = 2}, + [418] = {.lex_state = 146, .external_lex_state = 2}, + [419] = {.lex_state = 146, .external_lex_state = 2}, + [420] = {.lex_state = 8, .external_lex_state = 3}, + [421] = {.lex_state = 8, .external_lex_state = 3}, [422] = {.lex_state = 146, .external_lex_state = 2}, [423] = {.lex_state = 146, .external_lex_state = 2}, [424] = {.lex_state = 146, .external_lex_state = 2}, [425] = {.lex_state = 146, .external_lex_state = 2}, [426] = {.lex_state = 146, .external_lex_state = 2}, - [427] = {.lex_state = 8, .external_lex_state = 4}, + [427] = {.lex_state = 8, .external_lex_state = 3}, [428] = {.lex_state = 8, .external_lex_state = 3}, [429] = {.lex_state = 8, .external_lex_state = 4}, [430] = {.lex_state = 8, .external_lex_state = 4}, [431] = {.lex_state = 8, .external_lex_state = 4}, [432] = {.lex_state = 8, .external_lex_state = 4}, [433] = {.lex_state = 8, .external_lex_state = 4}, - [434] = {.lex_state = 8, .external_lex_state = 3}, + [434] = {.lex_state = 8, .external_lex_state = 4}, [435] = {.lex_state = 8, .external_lex_state = 4}, [436] = {.lex_state = 8, .external_lex_state = 4}, [437] = {.lex_state = 8, .external_lex_state = 4}, - [438] = {.lex_state = 8, .external_lex_state = 4}, + [438] = {.lex_state = 8, .external_lex_state = 3}, [439] = {.lex_state = 8, .external_lex_state = 4}, - [440] = {.lex_state = 8, .external_lex_state = 4}, + [440] = {.lex_state = 8, .external_lex_state = 3}, [441] = {.lex_state = 8, .external_lex_state = 4}, [442] = {.lex_state = 8, .external_lex_state = 4}, [443] = {.lex_state = 8, .external_lex_state = 3}, - [444] = {.lex_state = 8, .external_lex_state = 3}, - [445] = {.lex_state = 8, .external_lex_state = 3}, + [444] = {.lex_state = 8, .external_lex_state = 4}, + [445] = {.lex_state = 8, .external_lex_state = 4}, [446] = {.lex_state = 8, .external_lex_state = 4}, [447] = {.lex_state = 8, .external_lex_state = 4}, [448] = {.lex_state = 8, .external_lex_state = 4}, [449] = {.lex_state = 8, .external_lex_state = 4}, [450] = {.lex_state = 8, .external_lex_state = 4}, - [451] = {.lex_state = 8, .external_lex_state = 3}, - [452] = {.lex_state = 8, .external_lex_state = 4}, - [453] = {.lex_state = 8, .external_lex_state = 4}, + [451] = {.lex_state = 8, .external_lex_state = 4}, + [452] = {.lex_state = 8, .external_lex_state = 3}, + [453] = {.lex_state = 8, .external_lex_state = 3}, [454] = {.lex_state = 8, .external_lex_state = 4}, - [455] = {.lex_state = 8, .external_lex_state = 3}, - [456] = {.lex_state = 8, .external_lex_state = 4}, + [455] = {.lex_state = 8, .external_lex_state = 4}, + [456] = {.lex_state = 8, .external_lex_state = 3}, [457] = {.lex_state = 8, .external_lex_state = 3}, - [458] = {.lex_state = 8, .external_lex_state = 4}, - [459] = {.lex_state = 8, .external_lex_state = 3}, + [458] = {.lex_state = 8, .external_lex_state = 3}, + [459] = {.lex_state = 8, .external_lex_state = 4}, [460] = {.lex_state = 8, .external_lex_state = 4}, [461] = {.lex_state = 8, .external_lex_state = 3}, [462] = {.lex_state = 8, .external_lex_state = 3}, - [463] = {.lex_state = 8, .external_lex_state = 3}, + [463] = {.lex_state = 8, .external_lex_state = 4}, [464] = {.lex_state = 8, .external_lex_state = 3}, [465] = {.lex_state = 8, .external_lex_state = 3}, [466] = {.lex_state = 8, .external_lex_state = 3}, @@ -7318,23 +7341,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [475] = {.lex_state = 8, .external_lex_state = 3}, [476] = {.lex_state = 8, .external_lex_state = 3}, [477] = {.lex_state = 8, .external_lex_state = 3}, - [478] = {.lex_state = 9, .external_lex_state = 3}, - [479] = {.lex_state = 9, .external_lex_state = 4}, + [478] = {.lex_state = 9, .external_lex_state = 4}, + [479] = {.lex_state = 9, .external_lex_state = 3}, [480] = {.lex_state = 9, .external_lex_state = 3}, [481] = {.lex_state = 9, .external_lex_state = 3}, [482] = {.lex_state = 9, .external_lex_state = 3}, [483] = {.lex_state = 9, .external_lex_state = 3}, - [484] = {.lex_state = 9, .external_lex_state = 3}, + [484] = {.lex_state = 9, .external_lex_state = 4}, [485] = {.lex_state = 9, .external_lex_state = 3}, - [486] = {.lex_state = 9, .external_lex_state = 4}, + [486] = {.lex_state = 9, .external_lex_state = 3}, [487] = {.lex_state = 9, .external_lex_state = 4}, [488] = {.lex_state = 9, .external_lex_state = 3}, [489] = {.lex_state = 9, .external_lex_state = 3}, [490] = {.lex_state = 9, .external_lex_state = 3}, [491] = {.lex_state = 9, .external_lex_state = 3}, - [492] = {.lex_state = 9, .external_lex_state = 4}, - [493] = {.lex_state = 9, .external_lex_state = 4}, - [494] = {.lex_state = 9, .external_lex_state = 4}, + [492] = {.lex_state = 9, .external_lex_state = 3}, + [493] = {.lex_state = 9, .external_lex_state = 3}, + [494] = {.lex_state = 9, .external_lex_state = 3}, [495] = {.lex_state = 9, .external_lex_state = 3}, [496] = {.lex_state = 9, .external_lex_state = 3}, [497] = {.lex_state = 9, .external_lex_state = 3}, @@ -7345,30 +7368,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [502] = {.lex_state = 9, .external_lex_state = 3}, [503] = {.lex_state = 9, .external_lex_state = 3}, [504] = {.lex_state = 9, .external_lex_state = 3}, - [505] = {.lex_state = 9, .external_lex_state = 3}, - [506] = {.lex_state = 9, .external_lex_state = 3}, + [505] = {.lex_state = 9, .external_lex_state = 4}, + [506] = {.lex_state = 9, .external_lex_state = 4}, [507] = {.lex_state = 9, .external_lex_state = 3}, [508] = {.lex_state = 9, .external_lex_state = 3}, [509] = {.lex_state = 9, .external_lex_state = 3}, [510] = {.lex_state = 9, .external_lex_state = 3}, [511] = {.lex_state = 9, .external_lex_state = 3}, - [512] = {.lex_state = 9, .external_lex_state = 3}, + [512] = {.lex_state = 9, .external_lex_state = 4}, [513] = {.lex_state = 9, .external_lex_state = 3}, [514] = {.lex_state = 9, .external_lex_state = 3}, [515] = {.lex_state = 9, .external_lex_state = 4}, [516] = {.lex_state = 9, .external_lex_state = 3}, - [517] = {.lex_state = 9, .external_lex_state = 4}, - [518] = {.lex_state = 9, .external_lex_state = 4}, + [517] = {.lex_state = 9, .external_lex_state = 3}, + [518] = {.lex_state = 9, .external_lex_state = 3}, [519] = {.lex_state = 9, .external_lex_state = 3}, [520] = {.lex_state = 9, .external_lex_state = 3}, - [521] = {.lex_state = 9, .external_lex_state = 3}, + [521] = {.lex_state = 9, .external_lex_state = 4}, [522] = {.lex_state = 9, .external_lex_state = 3}, [523] = {.lex_state = 9, .external_lex_state = 3}, [524] = {.lex_state = 9, .external_lex_state = 3}, [525] = {.lex_state = 9, .external_lex_state = 3}, - [526] = {.lex_state = 9, .external_lex_state = 3}, + [526] = {.lex_state = 10, .external_lex_state = 3}, [527] = {.lex_state = 9, .external_lex_state = 3}, - [528] = {.lex_state = 10, .external_lex_state = 3}, + [528] = {.lex_state = 9, .external_lex_state = 3}, [529] = {.lex_state = 9, .external_lex_state = 3}, [530] = {.lex_state = 9, .external_lex_state = 3}, [531] = {.lex_state = 9, .external_lex_state = 3}, @@ -7378,10 +7401,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [535] = {.lex_state = 9, .external_lex_state = 3}, [536] = {.lex_state = 9, .external_lex_state = 3}, [537] = {.lex_state = 9, .external_lex_state = 3}, - [538] = {.lex_state = 9, .external_lex_state = 4}, + [538] = {.lex_state = 9, .external_lex_state = 3}, [539] = {.lex_state = 9, .external_lex_state = 3}, - [540] = {.lex_state = 9, .external_lex_state = 3}, - [541] = {.lex_state = 9, .external_lex_state = 3}, + [540] = {.lex_state = 9, .external_lex_state = 4}, + [541] = {.lex_state = 9, .external_lex_state = 4}, [542] = {.lex_state = 9, .external_lex_state = 3}, [543] = {.lex_state = 9, .external_lex_state = 3}, [544] = {.lex_state = 9, .external_lex_state = 3}, @@ -7390,13 +7413,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [547] = {.lex_state = 9, .external_lex_state = 3}, [548] = {.lex_state = 9, .external_lex_state = 3}, [549] = {.lex_state = 9, .external_lex_state = 3}, - [550] = {.lex_state = 9, .external_lex_state = 3}, + [550] = {.lex_state = 9, .external_lex_state = 4}, [551] = {.lex_state = 9, .external_lex_state = 3}, [552] = {.lex_state = 9, .external_lex_state = 3}, [553] = {.lex_state = 9, .external_lex_state = 3}, [554] = {.lex_state = 9, .external_lex_state = 3}, [555] = {.lex_state = 9, .external_lex_state = 3}, - [556] = {.lex_state = 9, .external_lex_state = 4}, + [556] = {.lex_state = 9, .external_lex_state = 3}, [557] = {.lex_state = 9, .external_lex_state = 3}, [558] = {.lex_state = 9, .external_lex_state = 3}, [559] = {.lex_state = 9, .external_lex_state = 3}, @@ -7418,24 +7441,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [575] = {.lex_state = 9, .external_lex_state = 3}, [576] = {.lex_state = 9, .external_lex_state = 3}, [577] = {.lex_state = 9, .external_lex_state = 3}, - [578] = {.lex_state = 9, .external_lex_state = 3}, + [578] = {.lex_state = 9, .external_lex_state = 4}, [579] = {.lex_state = 9, .external_lex_state = 3}, [580] = {.lex_state = 9, .external_lex_state = 3}, - [581] = {.lex_state = 9, .external_lex_state = 4}, + [581] = {.lex_state = 9, .external_lex_state = 3}, [582] = {.lex_state = 9, .external_lex_state = 3}, [583] = {.lex_state = 9, .external_lex_state = 4}, [584] = {.lex_state = 9, .external_lex_state = 4}, [585] = {.lex_state = 9, .external_lex_state = 4}, - [586] = {.lex_state = 9, .external_lex_state = 3}, + [586] = {.lex_state = 9, .external_lex_state = 4}, [587] = {.lex_state = 9, .external_lex_state = 4}, - [588] = {.lex_state = 9, .external_lex_state = 4}, + [588] = {.lex_state = 9, .external_lex_state = 3}, [589] = {.lex_state = 9, .external_lex_state = 4}, [590] = {.lex_state = 9, .external_lex_state = 4}, [591] = {.lex_state = 9, .external_lex_state = 4}, [592] = {.lex_state = 9, .external_lex_state = 3}, [593] = {.lex_state = 9, .external_lex_state = 4}, - [594] = {.lex_state = 9, .external_lex_state = 3}, - [595] = {.lex_state = 9, .external_lex_state = 4}, + [594] = {.lex_state = 9, .external_lex_state = 4}, + [595] = {.lex_state = 9, .external_lex_state = 3}, [596] = {.lex_state = 9, .external_lex_state = 4}, [597] = {.lex_state = 9, .external_lex_state = 4}, [598] = {.lex_state = 9, .external_lex_state = 4}, @@ -7443,9 +7466,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [600] = {.lex_state = 9, .external_lex_state = 4}, [601] = {.lex_state = 9, .external_lex_state = 4}, [602] = {.lex_state = 9, .external_lex_state = 4}, - [603] = {.lex_state = 9, .external_lex_state = 3}, - [604] = {.lex_state = 9, .external_lex_state = 3}, - [605] = {.lex_state = 9, .external_lex_state = 3}, + [603] = {.lex_state = 9, .external_lex_state = 4}, + [604] = {.lex_state = 9, .external_lex_state = 4}, + [605] = {.lex_state = 9, .external_lex_state = 4}, [606] = {.lex_state = 9, .external_lex_state = 4}, [607] = {.lex_state = 9, .external_lex_state = 4}, [608] = {.lex_state = 9, .external_lex_state = 4}, @@ -7485,96 +7508,96 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [642] = {.lex_state = 9, .external_lex_state = 4}, [643] = {.lex_state = 9, .external_lex_state = 4}, [644] = {.lex_state = 9, .external_lex_state = 4}, - [645] = {.lex_state = 9, .external_lex_state = 4}, + [645] = {.lex_state = 9, .external_lex_state = 3}, [646] = {.lex_state = 9, .external_lex_state = 4}, [647] = {.lex_state = 9, .external_lex_state = 4}, [648] = {.lex_state = 9, .external_lex_state = 4}, [649] = {.lex_state = 9, .external_lex_state = 4}, - [650] = {.lex_state = 9, .external_lex_state = 4}, + [650] = {.lex_state = 9, .external_lex_state = 3}, [651] = {.lex_state = 9, .external_lex_state = 4}, - [652] = {.lex_state = 9, .external_lex_state = 4}, + [652] = {.lex_state = 9, .external_lex_state = 3}, [653] = {.lex_state = 9, .external_lex_state = 4}, - [654] = {.lex_state = 9, .external_lex_state = 4}, + [654] = {.lex_state = 9, .external_lex_state = 3}, [655] = {.lex_state = 9, .external_lex_state = 4}, - [656] = {.lex_state = 9, .external_lex_state = 4}, + [656] = {.lex_state = 9, .external_lex_state = 3}, [657] = {.lex_state = 9, .external_lex_state = 4}, [658] = {.lex_state = 9, .external_lex_state = 4}, [659] = {.lex_state = 9, .external_lex_state = 4}, - [660] = {.lex_state = 9, .external_lex_state = 4}, + [660] = {.lex_state = 9, .external_lex_state = 3}, [661] = {.lex_state = 9, .external_lex_state = 3}, [662] = {.lex_state = 9, .external_lex_state = 4}, [663] = {.lex_state = 9, .external_lex_state = 4}, [664] = {.lex_state = 9, .external_lex_state = 3}, - [665] = {.lex_state = 9, .external_lex_state = 3}, + [665] = {.lex_state = 9, .external_lex_state = 4}, [666] = {.lex_state = 9, .external_lex_state = 4}, [667] = {.lex_state = 9, .external_lex_state = 4}, [668] = {.lex_state = 9, .external_lex_state = 4}, - [669] = {.lex_state = 10, .external_lex_state = 4}, + [669] = {.lex_state = 9, .external_lex_state = 4}, [670] = {.lex_state = 9, .external_lex_state = 4}, - [671] = {.lex_state = 9, .external_lex_state = 3}, + [671] = {.lex_state = 9, .external_lex_state = 4}, [672] = {.lex_state = 9, .external_lex_state = 3}, - [673] = {.lex_state = 9, .external_lex_state = 3}, - [674] = {.lex_state = 9, .external_lex_state = 4}, + [673] = {.lex_state = 9, .external_lex_state = 4}, + [674] = {.lex_state = 9, .external_lex_state = 3}, [675] = {.lex_state = 9, .external_lex_state = 4}, - [676] = {.lex_state = 9, .external_lex_state = 4}, - [677] = {.lex_state = 9, .external_lex_state = 4}, - [678] = {.lex_state = 9, .external_lex_state = 3}, - [679] = {.lex_state = 9, .external_lex_state = 3}, - [680] = {.lex_state = 9, .external_lex_state = 3}, - [681] = {.lex_state = 9, .external_lex_state = 3}, + [676] = {.lex_state = 9, .external_lex_state = 3}, + [677] = {.lex_state = 9, .external_lex_state = 3}, + [678] = {.lex_state = 9, .external_lex_state = 4}, + [679] = {.lex_state = 9, .external_lex_state = 4}, + [680] = {.lex_state = 9, .external_lex_state = 4}, + [681] = {.lex_state = 9, .external_lex_state = 4}, [682] = {.lex_state = 9, .external_lex_state = 3}, [683] = {.lex_state = 9, .external_lex_state = 3}, [684] = {.lex_state = 9, .external_lex_state = 4}, - [685] = {.lex_state = 9, .external_lex_state = 3}, - [686] = {.lex_state = 9, .external_lex_state = 3}, + [685] = {.lex_state = 9, .external_lex_state = 4}, + [686] = {.lex_state = 9, .external_lex_state = 4}, [687] = {.lex_state = 9, .external_lex_state = 4}, [688] = {.lex_state = 9, .external_lex_state = 4}, [689] = {.lex_state = 9, .external_lex_state = 3}, [690] = {.lex_state = 9, .external_lex_state = 3}, [691] = {.lex_state = 9, .external_lex_state = 4}, [692] = {.lex_state = 9, .external_lex_state = 4}, - [693] = {.lex_state = 9, .external_lex_state = 3}, - [694] = {.lex_state = 9, .external_lex_state = 3}, + [693] = {.lex_state = 9, .external_lex_state = 4}, + [694] = {.lex_state = 9, .external_lex_state = 4}, [695] = {.lex_state = 9, .external_lex_state = 4}, [696] = {.lex_state = 9, .external_lex_state = 3}, - [697] = {.lex_state = 9, .external_lex_state = 4}, - [698] = {.lex_state = 9, .external_lex_state = 4}, + [697] = {.lex_state = 9, .external_lex_state = 3}, + [698] = {.lex_state = 9, .external_lex_state = 3}, [699] = {.lex_state = 9, .external_lex_state = 4}, [700] = {.lex_state = 9, .external_lex_state = 4}, [701] = {.lex_state = 9, .external_lex_state = 4}, - [702] = {.lex_state = 9, .external_lex_state = 4}, + [702] = {.lex_state = 10, .external_lex_state = 4}, [703] = {.lex_state = 9, .external_lex_state = 4}, - [704] = {.lex_state = 10, .external_lex_state = 4}, + [704] = {.lex_state = 9, .external_lex_state = 4}, [705] = {.lex_state = 9, .external_lex_state = 4}, - [706] = {.lex_state = 9, .external_lex_state = 3}, + [706] = {.lex_state = 9, .external_lex_state = 4}, [707] = {.lex_state = 9, .external_lex_state = 4}, - [708] = {.lex_state = 9, .external_lex_state = 4}, - [709] = {.lex_state = 9, .external_lex_state = 4}, - [710] = {.lex_state = 9, .external_lex_state = 3}, - [711] = {.lex_state = 9, .external_lex_state = 3}, - [712] = {.lex_state = 9, .external_lex_state = 4}, + [708] = {.lex_state = 9, .external_lex_state = 3}, + [709] = {.lex_state = 9, .external_lex_state = 3}, + [710] = {.lex_state = 9, .external_lex_state = 4}, + [711] = {.lex_state = 9, .external_lex_state = 4}, + [712] = {.lex_state = 9, .external_lex_state = 3}, [713] = {.lex_state = 9, .external_lex_state = 4}, [714] = {.lex_state = 9, .external_lex_state = 3}, [715] = {.lex_state = 9, .external_lex_state = 4}, - [716] = {.lex_state = 9, .external_lex_state = 4}, + [716] = {.lex_state = 9, .external_lex_state = 3}, [717] = {.lex_state = 9, .external_lex_state = 4}, [718] = {.lex_state = 9, .external_lex_state = 4}, - [719] = {.lex_state = 9, .external_lex_state = 3}, + [719] = {.lex_state = 9, .external_lex_state = 4}, [720] = {.lex_state = 9, .external_lex_state = 4}, [721] = {.lex_state = 9, .external_lex_state = 4}, - [722] = {.lex_state = 9, .external_lex_state = 4}, - [723] = {.lex_state = 9, .external_lex_state = 4}, - [724] = {.lex_state = 9, .external_lex_state = 4}, - [725] = {.lex_state = 9, .external_lex_state = 4}, + [722] = {.lex_state = 9, .external_lex_state = 3}, + [723] = {.lex_state = 9, .external_lex_state = 3}, + [724] = {.lex_state = 9, .external_lex_state = 3}, + [725] = {.lex_state = 9, .external_lex_state = 3}, [726] = {.lex_state = 9, .external_lex_state = 3}, [727] = {.lex_state = 9, .external_lex_state = 4}, [728] = {.lex_state = 9, .external_lex_state = 4}, - [729] = {.lex_state = 9, .external_lex_state = 3}, + [729] = {.lex_state = 9, .external_lex_state = 4}, [730] = {.lex_state = 9, .external_lex_state = 4}, [731] = {.lex_state = 9, .external_lex_state = 4}, - [732] = {.lex_state = 9, .external_lex_state = 4}, - [733] = {.lex_state = 9, .external_lex_state = 4}, - [734] = {.lex_state = 9, .external_lex_state = 3}, + [732] = {.lex_state = 9, .external_lex_state = 3}, + [733] = {.lex_state = 10, .external_lex_state = 4}, + [734] = {.lex_state = 9, .external_lex_state = 4}, [735] = {.lex_state = 9, .external_lex_state = 3}, [736] = {.lex_state = 9, .external_lex_state = 4}, [737] = {.lex_state = 9, .external_lex_state = 4}, @@ -7586,17 +7609,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [743] = {.lex_state = 9, .external_lex_state = 4}, [744] = {.lex_state = 9, .external_lex_state = 4}, [745] = {.lex_state = 9, .external_lex_state = 4}, - [746] = {.lex_state = 9, .external_lex_state = 3}, - [747] = {.lex_state = 9, .external_lex_state = 4}, + [746] = {.lex_state = 9, .external_lex_state = 4}, + [747] = {.lex_state = 9, .external_lex_state = 3}, [748] = {.lex_state = 9, .external_lex_state = 4}, [749] = {.lex_state = 9, .external_lex_state = 3}, [750] = {.lex_state = 9, .external_lex_state = 4}, [751] = {.lex_state = 9, .external_lex_state = 4}, - [752] = {.lex_state = 9, .external_lex_state = 4}, - [753] = {.lex_state = 9, .external_lex_state = 3}, + [752] = {.lex_state = 9, .external_lex_state = 3}, + [753] = {.lex_state = 9, .external_lex_state = 4}, [754] = {.lex_state = 9, .external_lex_state = 4}, [755] = {.lex_state = 9, .external_lex_state = 4}, - [756] = {.lex_state = 9, .external_lex_state = 3}, + [756] = {.lex_state = 9, .external_lex_state = 4}, [757] = {.lex_state = 9, .external_lex_state = 3}, [758] = {.lex_state = 9, .external_lex_state = 4}, [759] = {.lex_state = 9, .external_lex_state = 3}, @@ -7609,23 +7632,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [766] = {.lex_state = 9, .external_lex_state = 3}, [767] = {.lex_state = 9, .external_lex_state = 3}, [768] = {.lex_state = 9, .external_lex_state = 3}, - [769] = {.lex_state = 9, .external_lex_state = 3}, + [769] = {.lex_state = 9, .external_lex_state = 4}, [770] = {.lex_state = 9, .external_lex_state = 3}, [771] = {.lex_state = 9, .external_lex_state = 3}, [772] = {.lex_state = 9, .external_lex_state = 3}, [773] = {.lex_state = 9, .external_lex_state = 3}, [774] = {.lex_state = 9, .external_lex_state = 3}, [775] = {.lex_state = 9, .external_lex_state = 3}, - [776] = {.lex_state = 9, .external_lex_state = 4}, + [776] = {.lex_state = 9, .external_lex_state = 3}, [777] = {.lex_state = 9, .external_lex_state = 3}, [778] = {.lex_state = 9, .external_lex_state = 3}, - [779] = {.lex_state = 9, .external_lex_state = 4}, + [779] = {.lex_state = 9, .external_lex_state = 3}, [780] = {.lex_state = 9, .external_lex_state = 3}, [781] = {.lex_state = 9, .external_lex_state = 3}, [782] = {.lex_state = 9, .external_lex_state = 3}, [783] = {.lex_state = 9, .external_lex_state = 3}, - [784] = {.lex_state = 9, .external_lex_state = 3}, - [785] = {.lex_state = 9, .external_lex_state = 4}, + [784] = {.lex_state = 9, .external_lex_state = 4}, + [785] = {.lex_state = 9, .external_lex_state = 3}, [786] = {.lex_state = 9, .external_lex_state = 3}, [787] = {.lex_state = 9, .external_lex_state = 3}, [788] = {.lex_state = 9, .external_lex_state = 3}, @@ -7665,21 +7688,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [822] = {.lex_state = 9, .external_lex_state = 3}, [823] = {.lex_state = 9, .external_lex_state = 3}, [824] = {.lex_state = 9, .external_lex_state = 3}, - [825] = {.lex_state = 10, .external_lex_state = 3}, + [825] = {.lex_state = 6, .external_lex_state = 2}, [826] = {.lex_state = 9, .external_lex_state = 3}, [827] = {.lex_state = 9, .external_lex_state = 3}, - [828] = {.lex_state = 6, .external_lex_state = 2}, + [828] = {.lex_state = 9, .external_lex_state = 3}, [829] = {.lex_state = 6, .external_lex_state = 2}, - [830] = {.lex_state = 9, .external_lex_state = 3}, + [830] = {.lex_state = 6, .external_lex_state = 2}, [831] = {.lex_state = 9, .external_lex_state = 3}, [832] = {.lex_state = 9, .external_lex_state = 3}, [833] = {.lex_state = 6, .external_lex_state = 2}, - [834] = {.lex_state = 6, .external_lex_state = 2}, + [834] = {.lex_state = 9, .external_lex_state = 3}, [835] = {.lex_state = 6, .external_lex_state = 2}, [836] = {.lex_state = 9, .external_lex_state = 3}, [837] = {.lex_state = 6, .external_lex_state = 2}, [838] = {.lex_state = 6, .external_lex_state = 2}, - [839] = {.lex_state = 9, .external_lex_state = 3}, + [839] = {.lex_state = 10, .external_lex_state = 3}, [840] = {.lex_state = 6, .external_lex_state = 2}, [841] = {.lex_state = 6, .external_lex_state = 2}, [842] = {.lex_state = 6, .external_lex_state = 2}, @@ -7691,9 +7714,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [848] = {.lex_state = 6, .external_lex_state = 2}, [849] = {.lex_state = 6, .external_lex_state = 2}, [850] = {.lex_state = 6, .external_lex_state = 2}, - [851] = {.lex_state = 6, .external_lex_state = 2}, + [851] = {.lex_state = 146, .external_lex_state = 2}, [852] = {.lex_state = 146, .external_lex_state = 2}, - [853] = {.lex_state = 146, .external_lex_state = 2}, + [853] = {.lex_state = 6, .external_lex_state = 2}, [854] = {.lex_state = 146, .external_lex_state = 2}, [855] = {.lex_state = 146, .external_lex_state = 2}, [856] = {.lex_state = 146, .external_lex_state = 2}, @@ -7710,26 +7733,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [867] = {.lex_state = 146, .external_lex_state = 2}, [868] = {.lex_state = 146, .external_lex_state = 2}, [869] = {.lex_state = 146, .external_lex_state = 2}, - [870] = {.lex_state = 146, .external_lex_state = 5}, + [870] = {.lex_state = 146, .external_lex_state = 2}, [871] = {.lex_state = 146, .external_lex_state = 2}, [872] = {.lex_state = 146, .external_lex_state = 2}, [873] = {.lex_state = 146, .external_lex_state = 2}, [874] = {.lex_state = 146, .external_lex_state = 2}, [875] = {.lex_state = 146, .external_lex_state = 2}, - [876] = {.lex_state = 146, .external_lex_state = 2}, - [877] = {.lex_state = 6, .external_lex_state = 2}, + [876] = {.lex_state = 146, .external_lex_state = 5}, + [877] = {.lex_state = 146, .external_lex_state = 2}, [878] = {.lex_state = 146, .external_lex_state = 2}, [879] = {.lex_state = 146, .external_lex_state = 2}, [880] = {.lex_state = 146, .external_lex_state = 2}, - [881] = {.lex_state = 146, .external_lex_state = 2}, + [881] = {.lex_state = 6, .external_lex_state = 2}, [882] = {.lex_state = 146, .external_lex_state = 2}, - [883] = {.lex_state = 146, .external_lex_state = 5}, + [883] = {.lex_state = 146, .external_lex_state = 2}, [884] = {.lex_state = 146, .external_lex_state = 2}, - [885] = {.lex_state = 146, .external_lex_state = 5}, - [886] = {.lex_state = 6, .external_lex_state = 2}, - [887] = {.lex_state = 146, .external_lex_state = 2}, - [888] = {.lex_state = 6, .external_lex_state = 2}, - [889] = {.lex_state = 146, .external_lex_state = 2}, + [885] = {.lex_state = 6, .external_lex_state = 2}, + [886] = {.lex_state = 146, .external_lex_state = 2}, + [887] = {.lex_state = 146, .external_lex_state = 5}, + [888] = {.lex_state = 146, .external_lex_state = 5}, + [889] = {.lex_state = 6, .external_lex_state = 2}, [890] = {.lex_state = 146, .external_lex_state = 5}, [891] = {.lex_state = 146, .external_lex_state = 5}, [892] = {.lex_state = 146, .external_lex_state = 5}, @@ -7737,15 +7760,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [894] = {.lex_state = 6, .external_lex_state = 2}, [895] = {.lex_state = 6, .external_lex_state = 2}, [896] = {.lex_state = 6, .external_lex_state = 2}, - [897] = {.lex_state = 6, .external_lex_state = 2}, + [897] = {.lex_state = 6, .external_lex_state = 5}, [898] = {.lex_state = 6, .external_lex_state = 2}, - [899] = {.lex_state = 12, .external_lex_state = 2}, + [899] = {.lex_state = 6, .external_lex_state = 2}, [900] = {.lex_state = 6, .external_lex_state = 2}, - [901] = {.lex_state = 146, .external_lex_state = 5}, + [901] = {.lex_state = 6, .external_lex_state = 2}, [902] = {.lex_state = 6, .external_lex_state = 2}, - [903] = {.lex_state = 6, .external_lex_state = 2}, - [904] = {.lex_state = 146, .external_lex_state = 5}, - [905] = {.lex_state = 146, .external_lex_state = 5}, + [903] = {.lex_state = 146, .external_lex_state = 5}, + [904] = {.lex_state = 6, .external_lex_state = 2}, + [905] = {.lex_state = 6, .external_lex_state = 2}, [906] = {.lex_state = 6, .external_lex_state = 2}, [907] = {.lex_state = 6, .external_lex_state = 2}, [908] = {.lex_state = 6, .external_lex_state = 2}, @@ -7757,21 +7780,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [914] = {.lex_state = 6, .external_lex_state = 2}, [915] = {.lex_state = 6, .external_lex_state = 2}, [916] = {.lex_state = 6, .external_lex_state = 2}, - [917] = {.lex_state = 146, .external_lex_state = 5}, - [918] = {.lex_state = 6, .external_lex_state = 5}, - [919] = {.lex_state = 6, .external_lex_state = 2}, - [920] = {.lex_state = 6, .external_lex_state = 5}, - [921] = {.lex_state = 146, .external_lex_state = 5}, - [922] = {.lex_state = 6, .external_lex_state = 2}, - [923] = {.lex_state = 6, .external_lex_state = 2}, + [917] = {.lex_state = 6, .external_lex_state = 5}, + [918] = {.lex_state = 6, .external_lex_state = 2}, + [919] = {.lex_state = 146, .external_lex_state = 5}, + [920] = {.lex_state = 6, .external_lex_state = 2}, + [921] = {.lex_state = 6, .external_lex_state = 2}, + [922] = {.lex_state = 12, .external_lex_state = 2}, + [923] = {.lex_state = 146, .external_lex_state = 5}, [924] = {.lex_state = 6, .external_lex_state = 2}, - [925] = {.lex_state = 6, .external_lex_state = 2}, - [926] = {.lex_state = 146, .external_lex_state = 5}, + [925] = {.lex_state = 146, .external_lex_state = 5}, + [926] = {.lex_state = 6, .external_lex_state = 2}, [927] = {.lex_state = 6, .external_lex_state = 2}, [928] = {.lex_state = 6, .external_lex_state = 2}, - [929] = {.lex_state = 6, .external_lex_state = 2}, - [930] = {.lex_state = 6, .external_lex_state = 2}, - [931] = {.lex_state = 12, .external_lex_state = 2}, + [929] = {.lex_state = 146, .external_lex_state = 5}, + [930] = {.lex_state = 146, .external_lex_state = 5}, + [931] = {.lex_state = 6, .external_lex_state = 2}, [932] = {.lex_state = 6, .external_lex_state = 2}, [933] = {.lex_state = 6, .external_lex_state = 2}, [934] = {.lex_state = 6, .external_lex_state = 2}, @@ -7779,7 +7802,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [936] = {.lex_state = 6, .external_lex_state = 2}, [937] = {.lex_state = 6, .external_lex_state = 2}, [938] = {.lex_state = 6, .external_lex_state = 2}, - [939] = {.lex_state = 6, .external_lex_state = 2}, + [939] = {.lex_state = 12, .external_lex_state = 2}, [940] = {.lex_state = 6, .external_lex_state = 2}, [941] = {.lex_state = 6, .external_lex_state = 2}, [942] = {.lex_state = 6, .external_lex_state = 2}, @@ -7794,13 +7817,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [951] = {.lex_state = 146, .external_lex_state = 2}, [952] = {.lex_state = 146, .external_lex_state = 2}, [953] = {.lex_state = 146, .external_lex_state = 2}, - [954] = {.lex_state = 6, .external_lex_state = 2}, + [954] = {.lex_state = 146, .external_lex_state = 2}, [955] = {.lex_state = 146, .external_lex_state = 2}, [956] = {.lex_state = 146, .external_lex_state = 2}, [957] = {.lex_state = 146, .external_lex_state = 2}, - [958] = {.lex_state = 146, .external_lex_state = 2}, + [958] = {.lex_state = 6, .external_lex_state = 2}, [959] = {.lex_state = 6, .external_lex_state = 2}, - [960] = {.lex_state = 146, .external_lex_state = 2}, + [960] = {.lex_state = 6, .external_lex_state = 2}, [961] = {.lex_state = 146, .external_lex_state = 2}, [962] = {.lex_state = 146, .external_lex_state = 2}, [963] = {.lex_state = 146, .external_lex_state = 2}, @@ -7808,21 +7831,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [965] = {.lex_state = 146, .external_lex_state = 2}, [966] = {.lex_state = 146, .external_lex_state = 2}, [967] = {.lex_state = 146, .external_lex_state = 2}, - [968] = {.lex_state = 6, .external_lex_state = 2}, + [968] = {.lex_state = 146, .external_lex_state = 2}, [969] = {.lex_state = 146, .external_lex_state = 2}, [970] = {.lex_state = 146, .external_lex_state = 2}, [971] = {.lex_state = 146, .external_lex_state = 2}, [972] = {.lex_state = 146, .external_lex_state = 2}, [973] = {.lex_state = 146, .external_lex_state = 2}, [974] = {.lex_state = 146, .external_lex_state = 2}, - [975] = {.lex_state = 146, .external_lex_state = 2}, - [976] = {.lex_state = 146, .external_lex_state = 2}, - [977] = {.lex_state = 146, .external_lex_state = 2}, + [975] = {.lex_state = 6, .external_lex_state = 2}, + [976] = {.lex_state = 6, .external_lex_state = 2}, + [977] = {.lex_state = 6, .external_lex_state = 2}, [978] = {.lex_state = 146, .external_lex_state = 2}, - [979] = {.lex_state = 6, .external_lex_state = 2}, + [979] = {.lex_state = 146, .external_lex_state = 2}, [980] = {.lex_state = 146, .external_lex_state = 2}, - [981] = {.lex_state = 6, .external_lex_state = 2}, - [982] = {.lex_state = 6, .external_lex_state = 2}, + [981] = {.lex_state = 146, .external_lex_state = 2}, + [982] = {.lex_state = 146, .external_lex_state = 2}, [983] = {.lex_state = 146, .external_lex_state = 2}, [984] = {.lex_state = 146, .external_lex_state = 2}, [985] = {.lex_state = 146, .external_lex_state = 2}, @@ -7832,25 +7855,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [989] = {.lex_state = 146, .external_lex_state = 2}, [990] = {.lex_state = 146, .external_lex_state = 2}, [991] = {.lex_state = 146, .external_lex_state = 2}, - [992] = {.lex_state = 146, .external_lex_state = 2}, + [992] = {.lex_state = 8, .external_lex_state = 2}, [993] = {.lex_state = 146, .external_lex_state = 2}, [994] = {.lex_state = 146, .external_lex_state = 2}, [995] = {.lex_state = 146, .external_lex_state = 2}, [996] = {.lex_state = 146, .external_lex_state = 2}, - [997] = {.lex_state = 8, .external_lex_state = 2}, - [998] = {.lex_state = 8, .external_lex_state = 2}, + [997] = {.lex_state = 146, .external_lex_state = 2}, + [998] = {.lex_state = 146, .external_lex_state = 2}, [999] = {.lex_state = 146, .external_lex_state = 2}, [1000] = {.lex_state = 146, .external_lex_state = 2}, [1001] = {.lex_state = 146, .external_lex_state = 2}, - [1002] = {.lex_state = 146, .external_lex_state = 2}, - [1003] = {.lex_state = 146, .external_lex_state = 2}, - [1004] = {.lex_state = 8, .external_lex_state = 2}, - [1005] = {.lex_state = 8, .external_lex_state = 2}, + [1002] = {.lex_state = 8, .external_lex_state = 2}, + [1003] = {.lex_state = 8, .external_lex_state = 2}, + [1004] = {.lex_state = 146, .external_lex_state = 2}, + [1005] = {.lex_state = 146, .external_lex_state = 2}, [1006] = {.lex_state = 146, .external_lex_state = 2}, - [1007] = {.lex_state = 146, .external_lex_state = 2}, + [1007] = {.lex_state = 8, .external_lex_state = 2}, [1008] = {.lex_state = 146, .external_lex_state = 2}, - [1009] = {.lex_state = 8, .external_lex_state = 2}, - [1010] = {.lex_state = 146, .external_lex_state = 2}, + [1009] = {.lex_state = 146, .external_lex_state = 2}, + [1010] = {.lex_state = 8, .external_lex_state = 2}, [1011] = {.lex_state = 2, .external_lex_state = 2}, [1012] = {.lex_state = 2, .external_lex_state = 2}, [1013] = {.lex_state = 2, .external_lex_state = 2}, @@ -7880,17 +7903,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1037] = {.lex_state = 35, .external_lex_state = 2}, [1038] = {.lex_state = 35, .external_lex_state = 2}, [1039] = {.lex_state = 35, .external_lex_state = 2}, - [1040] = {.lex_state = 12, .external_lex_state = 2}, + [1040] = {.lex_state = 35, .external_lex_state = 2}, [1041] = {.lex_state = 35, .external_lex_state = 2}, - [1042] = {.lex_state = 35, .external_lex_state = 2}, + [1042] = {.lex_state = 12, .external_lex_state = 2}, [1043] = {.lex_state = 35, .external_lex_state = 2}, [1044] = {.lex_state = 35, .external_lex_state = 2}, [1045] = {.lex_state = 35, .external_lex_state = 2}, [1046] = {.lex_state = 35, .external_lex_state = 2}, - [1047] = {.lex_state = 35, .external_lex_state = 2}, + [1047] = {.lex_state = 12, .external_lex_state = 2}, [1048] = {.lex_state = 35, .external_lex_state = 2}, [1049] = {.lex_state = 35, .external_lex_state = 2}, - [1050] = {.lex_state = 12, .external_lex_state = 2}, + [1050] = {.lex_state = 35, .external_lex_state = 2}, [1051] = {.lex_state = 35, .external_lex_state = 2}, [1052] = {.lex_state = 35, .external_lex_state = 2}, [1053] = {.lex_state = 35, .external_lex_state = 2}, @@ -7898,12 +7921,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1055] = {.lex_state = 35, .external_lex_state = 2}, [1056] = {.lex_state = 146, .external_lex_state = 2}, [1057] = {.lex_state = 146, .external_lex_state = 2}, - [1058] = {.lex_state = 146, .external_lex_state = 2}, + [1058] = {.lex_state = 146, .external_lex_state = 5}, [1059] = {.lex_state = 146, .external_lex_state = 2}, [1060] = {.lex_state = 146, .external_lex_state = 2}, [1061] = {.lex_state = 146, .external_lex_state = 2}, [1062] = {.lex_state = 146, .external_lex_state = 2}, - [1063] = {.lex_state = 146, .external_lex_state = 2}, + [1063] = {.lex_state = 35, .external_lex_state = 2}, [1064] = {.lex_state = 146, .external_lex_state = 2}, [1065] = {.lex_state = 146, .external_lex_state = 2}, [1066] = {.lex_state = 146, .external_lex_state = 2}, @@ -7913,99 +7936,99 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1070] = {.lex_state = 146, .external_lex_state = 2}, [1071] = {.lex_state = 146, .external_lex_state = 2}, [1072] = {.lex_state = 146, .external_lex_state = 2}, - [1073] = {.lex_state = 35, .external_lex_state = 2}, - [1074] = {.lex_state = 146, .external_lex_state = 2}, + [1073] = {.lex_state = 146, .external_lex_state = 2}, + [1074] = {.lex_state = 146, .external_lex_state = 5}, [1075] = {.lex_state = 146, .external_lex_state = 2}, [1076] = {.lex_state = 146, .external_lex_state = 2}, [1077] = {.lex_state = 146, .external_lex_state = 2}, - [1078] = {.lex_state = 146, .external_lex_state = 5}, - [1079] = {.lex_state = 146, .external_lex_state = 5}, + [1078] = {.lex_state = 146, .external_lex_state = 2}, + [1079] = {.lex_state = 146, .external_lex_state = 2}, [1080] = {.lex_state = 146, .external_lex_state = 2}, [1081] = {.lex_state = 146, .external_lex_state = 2}, - [1082] = {.lex_state = 2, .external_lex_state = 2}, - [1083] = {.lex_state = 2, .external_lex_state = 2}, + [1082] = {.lex_state = 146, .external_lex_state = 2}, + [1083] = {.lex_state = 35, .external_lex_state = 2}, [1084] = {.lex_state = 19, .external_lex_state = 6}, - [1085] = {.lex_state = 145, .external_lex_state = 2}, - [1086] = {.lex_state = 146, .external_lex_state = 5}, - [1087] = {.lex_state = 146, .external_lex_state = 5}, + [1085] = {.lex_state = 2, .external_lex_state = 2}, + [1086] = {.lex_state = 2, .external_lex_state = 2}, + [1087] = {.lex_state = 2, .external_lex_state = 2}, [1088] = {.lex_state = 2, .external_lex_state = 2}, - [1089] = {.lex_state = 19, .external_lex_state = 6}, - [1090] = {.lex_state = 2, .external_lex_state = 2}, + [1089] = {.lex_state = 2, .external_lex_state = 2}, + [1090] = {.lex_state = 146, .external_lex_state = 2}, [1091] = {.lex_state = 2, .external_lex_state = 2}, [1092] = {.lex_state = 2, .external_lex_state = 2}, - [1093] = {.lex_state = 19, .external_lex_state = 6}, - [1094] = {.lex_state = 146, .external_lex_state = 2}, - [1095] = {.lex_state = 145, .external_lex_state = 2}, + [1093] = {.lex_state = 146, .external_lex_state = 5}, + [1094] = {.lex_state = 2, .external_lex_state = 2}, + [1095] = {.lex_state = 146, .external_lex_state = 2}, [1096] = {.lex_state = 2, .external_lex_state = 2}, - [1097] = {.lex_state = 2, .external_lex_state = 2}, + [1097] = {.lex_state = 146, .external_lex_state = 5}, [1098] = {.lex_state = 2, .external_lex_state = 2}, - [1099] = {.lex_state = 146, .external_lex_state = 5}, - [1100] = {.lex_state = 146, .external_lex_state = 5}, - [1101] = {.lex_state = 2, .external_lex_state = 2}, - [1102] = {.lex_state = 2, .external_lex_state = 2}, - [1103] = {.lex_state = 2, .external_lex_state = 2}, - [1104] = {.lex_state = 35, .external_lex_state = 2}, + [1099] = {.lex_state = 2, .external_lex_state = 2}, + [1100] = {.lex_state = 2, .external_lex_state = 2}, + [1101] = {.lex_state = 146, .external_lex_state = 5}, + [1102] = {.lex_state = 146, .external_lex_state = 2}, + [1103] = {.lex_state = 35, .external_lex_state = 2}, + [1104] = {.lex_state = 146, .external_lex_state = 5}, [1105] = {.lex_state = 146, .external_lex_state = 2}, - [1106] = {.lex_state = 35, .external_lex_state = 2}, - [1107] = {.lex_state = 2, .external_lex_state = 2}, - [1108] = {.lex_state = 146, .external_lex_state = 5}, - [1109] = {.lex_state = 2, .external_lex_state = 2}, - [1110] = {.lex_state = 146, .external_lex_state = 2}, - [1111] = {.lex_state = 2, .external_lex_state = 2}, - [1112] = {.lex_state = 146, .external_lex_state = 2}, - [1113] = {.lex_state = 35, .external_lex_state = 2}, - [1114] = {.lex_state = 146, .external_lex_state = 5}, - [1115] = {.lex_state = 146, .external_lex_state = 5}, - [1116] = {.lex_state = 2, .external_lex_state = 2}, - [1117] = {.lex_state = 146, .external_lex_state = 5}, - [1118] = {.lex_state = 19, .external_lex_state = 6}, - [1119] = {.lex_state = 146, .external_lex_state = 2}, - [1120] = {.lex_state = 146, .external_lex_state = 2}, - [1121] = {.lex_state = 19, .external_lex_state = 6}, - [1122] = {.lex_state = 146, .external_lex_state = 2}, - [1123] = {.lex_state = 146, .external_lex_state = 2}, + [1106] = {.lex_state = 2, .external_lex_state = 2}, + [1107] = {.lex_state = 145, .external_lex_state = 2}, + [1108] = {.lex_state = 2, .external_lex_state = 2}, + [1109] = {.lex_state = 19, .external_lex_state = 6}, + [1110] = {.lex_state = 19, .external_lex_state = 6}, + [1111] = {.lex_state = 146, .external_lex_state = 2}, + [1112] = {.lex_state = 2, .external_lex_state = 2}, + [1113] = {.lex_state = 146, .external_lex_state = 2}, + [1114] = {.lex_state = 35, .external_lex_state = 2}, + [1115] = {.lex_state = 146, .external_lex_state = 2}, + [1116] = {.lex_state = 146, .external_lex_state = 2}, + [1117] = {.lex_state = 145, .external_lex_state = 2}, + [1118] = {.lex_state = 146, .external_lex_state = 5}, + [1119] = {.lex_state = 146, .external_lex_state = 5}, + [1120] = {.lex_state = 146, .external_lex_state = 5}, + [1121] = {.lex_state = 146, .external_lex_state = 2}, + [1122] = {.lex_state = 2, .external_lex_state = 2}, + [1123] = {.lex_state = 146, .external_lex_state = 5}, [1124] = {.lex_state = 146, .external_lex_state = 2}, [1125] = {.lex_state = 146, .external_lex_state = 5}, [1126] = {.lex_state = 146, .external_lex_state = 5}, [1127] = {.lex_state = 146, .external_lex_state = 5}, [1128] = {.lex_state = 146, .external_lex_state = 5}, [1129] = {.lex_state = 2, .external_lex_state = 2}, - [1130] = {.lex_state = 2, .external_lex_state = 2}, - [1131] = {.lex_state = 146, .external_lex_state = 2}, - [1132] = {.lex_state = 146, .external_lex_state = 2}, - [1133] = {.lex_state = 146, .external_lex_state = 2}, + [1130] = {.lex_state = 146, .external_lex_state = 2}, + [1131] = {.lex_state = 19, .external_lex_state = 6}, + [1132] = {.lex_state = 19, .external_lex_state = 6}, + [1133] = {.lex_state = 2, .external_lex_state = 2}, [1134] = {.lex_state = 35, .external_lex_state = 2}, - [1135] = {.lex_state = 146, .external_lex_state = 2}, + [1135] = {.lex_state = 35, .external_lex_state = 2}, [1136] = {.lex_state = 146, .external_lex_state = 2}, [1137] = {.lex_state = 35, .external_lex_state = 2}, [1138] = {.lex_state = 146, .external_lex_state = 2}, [1139] = {.lex_state = 146, .external_lex_state = 2}, - [1140] = {.lex_state = 146, .external_lex_state = 2}, + [1140] = {.lex_state = 35, .external_lex_state = 2}, [1141] = {.lex_state = 146, .external_lex_state = 2}, - [1142] = {.lex_state = 146, .external_lex_state = 2}, - [1143] = {.lex_state = 146, .external_lex_state = 5}, + [1142] = {.lex_state = 35, .external_lex_state = 2}, + [1143] = {.lex_state = 146, .external_lex_state = 2}, [1144] = {.lex_state = 35, .external_lex_state = 2}, - [1145] = {.lex_state = 35, .external_lex_state = 2}, - [1146] = {.lex_state = 35, .external_lex_state = 2}, + [1145] = {.lex_state = 146, .external_lex_state = 2}, + [1146] = {.lex_state = 146, .external_lex_state = 2}, [1147] = {.lex_state = 146, .external_lex_state = 2}, [1148] = {.lex_state = 146, .external_lex_state = 2}, - [1149] = {.lex_state = 35, .external_lex_state = 2}, + [1149] = {.lex_state = 146, .external_lex_state = 5}, [1150] = {.lex_state = 35, .external_lex_state = 2}, [1151] = {.lex_state = 35, .external_lex_state = 2}, - [1152] = {.lex_state = 35, .external_lex_state = 2}, + [1152] = {.lex_state = 146, .external_lex_state = 2}, [1153] = {.lex_state = 35, .external_lex_state = 2}, [1154] = {.lex_state = 35, .external_lex_state = 2}, - [1155] = {.lex_state = 35, .external_lex_state = 2}, - [1156] = {.lex_state = 146, .external_lex_state = 2}, - [1157] = {.lex_state = 146, .external_lex_state = 2}, - [1158] = {.lex_state = 146, .external_lex_state = 2}, - [1159] = {.lex_state = 146, .external_lex_state = 2}, + [1155] = {.lex_state = 146, .external_lex_state = 2}, + [1156] = {.lex_state = 35, .external_lex_state = 2}, + [1157] = {.lex_state = 35, .external_lex_state = 2}, + [1158] = {.lex_state = 35, .external_lex_state = 2}, + [1159] = {.lex_state = 146, .external_lex_state = 5}, [1160] = {.lex_state = 146, .external_lex_state = 2}, - [1161] = {.lex_state = 146, .external_lex_state = 5}, + [1161] = {.lex_state = 146, .external_lex_state = 2}, [1162] = {.lex_state = 35, .external_lex_state = 2}, - [1163] = {.lex_state = 35, .external_lex_state = 2}, - [1164] = {.lex_state = 35, .external_lex_state = 2}, - [1165] = {.lex_state = 35, .external_lex_state = 2}, + [1163] = {.lex_state = 146, .external_lex_state = 2}, + [1164] = {.lex_state = 146, .external_lex_state = 2}, + [1165] = {.lex_state = 146, .external_lex_state = 2}, [1166] = {.lex_state = 35, .external_lex_state = 2}, [1167] = {.lex_state = 146, .external_lex_state = 2}, [1168] = {.lex_state = 146, .external_lex_state = 2}, @@ -8013,148 +8036,148 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1170] = {.lex_state = 35, .external_lex_state = 2}, [1171] = {.lex_state = 146, .external_lex_state = 2}, [1172] = {.lex_state = 146, .external_lex_state = 2}, - [1173] = {.lex_state = 146, .external_lex_state = 2}, - [1174] = {.lex_state = 35, .external_lex_state = 2}, - [1175] = {.lex_state = 146, .external_lex_state = 5}, - [1176] = {.lex_state = 146, .external_lex_state = 2}, - [1177] = {.lex_state = 146, .external_lex_state = 5}, + [1173] = {.lex_state = 35, .external_lex_state = 2}, + [1174] = {.lex_state = 146, .external_lex_state = 5}, + [1175] = {.lex_state = 146, .external_lex_state = 2}, + [1176] = {.lex_state = 35, .external_lex_state = 2}, + [1177] = {.lex_state = 35, .external_lex_state = 2}, [1178] = {.lex_state = 35, .external_lex_state = 2}, [1179] = {.lex_state = 35, .external_lex_state = 2}, [1180] = {.lex_state = 35, .external_lex_state = 2}, [1181] = {.lex_state = 146, .external_lex_state = 2}, [1182] = {.lex_state = 35, .external_lex_state = 2}, - [1183] = {.lex_state = 146, .external_lex_state = 2}, - [1184] = {.lex_state = 19, .external_lex_state = 6}, - [1185] = {.lex_state = 13, .external_lex_state = 2}, - [1186] = {.lex_state = 146, .external_lex_state = 2}, - [1187] = {.lex_state = 15, .external_lex_state = 7}, - [1188] = {.lex_state = 24, .external_lex_state = 7}, - [1189] = {.lex_state = 15, .external_lex_state = 7}, - [1190] = {.lex_state = 24, .external_lex_state = 7}, - [1191] = {.lex_state = 146, .external_lex_state = 2}, - [1192] = {.lex_state = 146, .external_lex_state = 2}, - [1193] = {.lex_state = 146, .external_lex_state = 2}, + [1183] = {.lex_state = 146, .external_lex_state = 5}, + [1184] = {.lex_state = 13, .external_lex_state = 2}, + [1185] = {.lex_state = 146, .external_lex_state = 2}, + [1186] = {.lex_state = 145, .external_lex_state = 2}, + [1187] = {.lex_state = 146, .external_lex_state = 5}, + [1188] = {.lex_state = 146, .external_lex_state = 5}, + [1189] = {.lex_state = 24, .external_lex_state = 7}, + [1190] = {.lex_state = 146, .external_lex_state = 2}, + [1191] = {.lex_state = 15, .external_lex_state = 7}, + [1192] = {.lex_state = 146, .external_lex_state = 5}, + [1193] = {.lex_state = 146, .external_lex_state = 5}, [1194] = {.lex_state = 146, .external_lex_state = 2}, [1195] = {.lex_state = 146, .external_lex_state = 2}, - [1196] = {.lex_state = 22, .external_lex_state = 2}, - [1197] = {.lex_state = 146, .external_lex_state = 5}, - [1198] = {.lex_state = 13, .external_lex_state = 2}, - [1199] = {.lex_state = 146, .external_lex_state = 2}, - [1200] = {.lex_state = 15, .external_lex_state = 7}, + [1196] = {.lex_state = 24, .external_lex_state = 7}, + [1197] = {.lex_state = 24, .external_lex_state = 7}, + [1198] = {.lex_state = 15, .external_lex_state = 7}, + [1199] = {.lex_state = 13, .external_lex_state = 2}, + [1200] = {.lex_state = 22, .external_lex_state = 2}, [1201] = {.lex_state = 15, .external_lex_state = 7}, - [1202] = {.lex_state = 146, .external_lex_state = 2}, - [1203] = {.lex_state = 24, .external_lex_state = 7}, + [1202] = {.lex_state = 24, .external_lex_state = 7}, + [1203] = {.lex_state = 15, .external_lex_state = 7}, [1204] = {.lex_state = 146, .external_lex_state = 2}, - [1205] = {.lex_state = 22, .external_lex_state = 2}, - [1206] = {.lex_state = 146, .external_lex_state = 2}, - [1207] = {.lex_state = 24, .external_lex_state = 7}, - [1208] = {.lex_state = 146, .external_lex_state = 2}, - [1209] = {.lex_state = 146, .external_lex_state = 5}, + [1205] = {.lex_state = 19, .external_lex_state = 6}, + [1206] = {.lex_state = 15, .external_lex_state = 7}, + [1207] = {.lex_state = 146, .external_lex_state = 2}, + [1208] = {.lex_state = 24, .external_lex_state = 7}, + [1209] = {.lex_state = 146, .external_lex_state = 2}, [1210] = {.lex_state = 146, .external_lex_state = 2}, [1211] = {.lex_state = 146, .external_lex_state = 2}, - [1212] = {.lex_state = 146, .external_lex_state = 5}, + [1212] = {.lex_state = 145, .external_lex_state = 2}, [1213] = {.lex_state = 146, .external_lex_state = 2}, [1214] = {.lex_state = 146, .external_lex_state = 2}, - [1215] = {.lex_state = 15, .external_lex_state = 7}, - [1216] = {.lex_state = 146, .external_lex_state = 2}, - [1217] = {.lex_state = 24, .external_lex_state = 7}, + [1215] = {.lex_state = 146, .external_lex_state = 2}, + [1216] = {.lex_state = 146, .external_lex_state = 5}, + [1217] = {.lex_state = 146, .external_lex_state = 5}, [1218] = {.lex_state = 146, .external_lex_state = 2}, [1219] = {.lex_state = 146, .external_lex_state = 2}, - [1220] = {.lex_state = 15, .external_lex_state = 7}, - [1221] = {.lex_state = 24, .external_lex_state = 7}, - [1222] = {.lex_state = 15, .external_lex_state = 7}, + [1220] = {.lex_state = 13, .external_lex_state = 2}, + [1221] = {.lex_state = 22, .external_lex_state = 2}, + [1222] = {.lex_state = 146, .external_lex_state = 2}, [1223] = {.lex_state = 146, .external_lex_state = 2}, - [1224] = {.lex_state = 146, .external_lex_state = 5}, + [1224] = {.lex_state = 146, .external_lex_state = 2}, [1225] = {.lex_state = 146, .external_lex_state = 2}, [1226] = {.lex_state = 146, .external_lex_state = 2}, [1227] = {.lex_state = 146, .external_lex_state = 2}, - [1228] = {.lex_state = 146, .external_lex_state = 2}, - [1229] = {.lex_state = 146, .external_lex_state = 5}, + [1228] = {.lex_state = 15, .external_lex_state = 7}, + [1229] = {.lex_state = 24, .external_lex_state = 7}, [1230] = {.lex_state = 24, .external_lex_state = 7}, [1231] = {.lex_state = 146, .external_lex_state = 2}, - [1232] = {.lex_state = 146, .external_lex_state = 2}, - [1233] = {.lex_state = 15, .external_lex_state = 7}, - [1234] = {.lex_state = 15, .external_lex_state = 7}, - [1235] = {.lex_state = 13, .external_lex_state = 2}, - [1236] = {.lex_state = 22, .external_lex_state = 2}, - [1237] = {.lex_state = 146, .external_lex_state = 2}, - [1238] = {.lex_state = 146, .external_lex_state = 5}, + [1232] = {.lex_state = 22, .external_lex_state = 2}, + [1233] = {.lex_state = 146, .external_lex_state = 2}, + [1234] = {.lex_state = 146, .external_lex_state = 2}, + [1235] = {.lex_state = 146, .external_lex_state = 2}, + [1236] = {.lex_state = 146, .external_lex_state = 2}, + [1237] = {.lex_state = 146, .external_lex_state = 5}, + [1238] = {.lex_state = 15, .external_lex_state = 7}, [1239] = {.lex_state = 146, .external_lex_state = 2}, - [1240] = {.lex_state = 146, .external_lex_state = 5}, - [1241] = {.lex_state = 146, .external_lex_state = 5}, - [1242] = {.lex_state = 145, .external_lex_state = 2}, + [1240] = {.lex_state = 146, .external_lex_state = 2}, + [1241] = {.lex_state = 146, .external_lex_state = 2}, + [1242] = {.lex_state = 146, .external_lex_state = 5}, [1243] = {.lex_state = 146, .external_lex_state = 2}, - [1244] = {.lex_state = 146, .external_lex_state = 5}, - [1245] = {.lex_state = 146, .external_lex_state = 2}, - [1246] = {.lex_state = 146, .external_lex_state = 5}, - [1247] = {.lex_state = 24, .external_lex_state = 7}, - [1248] = {.lex_state = 146, .external_lex_state = 2}, + [1244] = {.lex_state = 146, .external_lex_state = 2}, + [1245] = {.lex_state = 146, .external_lex_state = 5}, + [1246] = {.lex_state = 146, .external_lex_state = 2}, + [1247] = {.lex_state = 146, .external_lex_state = 5}, + [1248] = {.lex_state = 15, .external_lex_state = 7}, [1249] = {.lex_state = 24, .external_lex_state = 7}, [1250] = {.lex_state = 146, .external_lex_state = 5}, - [1251] = {.lex_state = 146, .external_lex_state = 2}, - [1252] = {.lex_state = 146, .external_lex_state = 2}, + [1251] = {.lex_state = 146, .external_lex_state = 5}, + [1252] = {.lex_state = 15, .external_lex_state = 7}, [1253] = {.lex_state = 146, .external_lex_state = 2}, [1254] = {.lex_state = 146, .external_lex_state = 2}, [1255] = {.lex_state = 146, .external_lex_state = 2}, - [1256] = {.lex_state = 146, .external_lex_state = 5}, - [1257] = {.lex_state = 3, .external_lex_state = 2}, + [1256] = {.lex_state = 24, .external_lex_state = 7}, + [1257] = {.lex_state = 146, .external_lex_state = 2}, [1258] = {.lex_state = 146, .external_lex_state = 2}, [1259] = {.lex_state = 146, .external_lex_state = 2}, [1260] = {.lex_state = 146, .external_lex_state = 2}, [1261] = {.lex_state = 146, .external_lex_state = 2}, [1262] = {.lex_state = 146, .external_lex_state = 2}, [1263] = {.lex_state = 146, .external_lex_state = 2}, - [1264] = {.lex_state = 146, .external_lex_state = 2}, + [1264] = {.lex_state = 3, .external_lex_state = 2}, [1265] = {.lex_state = 146, .external_lex_state = 2}, [1266] = {.lex_state = 146, .external_lex_state = 2}, - [1267] = {.lex_state = 146, .external_lex_state = 5}, + [1267] = {.lex_state = 146, .external_lex_state = 2}, [1268] = {.lex_state = 146, .external_lex_state = 2}, [1269] = {.lex_state = 146, .external_lex_state = 2}, - [1270] = {.lex_state = 146, .external_lex_state = 2}, + [1270] = {.lex_state = 146, .external_lex_state = 5}, [1271] = {.lex_state = 146, .external_lex_state = 2}, [1272] = {.lex_state = 146, .external_lex_state = 2}, [1273] = {.lex_state = 146, .external_lex_state = 2}, - [1274] = {.lex_state = 146, .external_lex_state = 5}, + [1274] = {.lex_state = 3, .external_lex_state = 2}, [1275] = {.lex_state = 146, .external_lex_state = 2}, - [1276] = {.lex_state = 3, .external_lex_state = 2}, + [1276] = {.lex_state = 146, .external_lex_state = 2}, [1277] = {.lex_state = 146, .external_lex_state = 2}, - [1278] = {.lex_state = 146, .external_lex_state = 5}, + [1278] = {.lex_state = 146, .external_lex_state = 2}, [1279] = {.lex_state = 146, .external_lex_state = 2}, [1280] = {.lex_state = 146, .external_lex_state = 2}, - [1281] = {.lex_state = 146, .external_lex_state = 2}, - [1282] = {.lex_state = 146, .external_lex_state = 2}, + [1281] = {.lex_state = 7, .external_lex_state = 2}, + [1282] = {.lex_state = 3, .external_lex_state = 2}, [1283] = {.lex_state = 146, .external_lex_state = 2}, - [1284] = {.lex_state = 146, .external_lex_state = 5}, + [1284] = {.lex_state = 146, .external_lex_state = 2}, [1285] = {.lex_state = 146, .external_lex_state = 2}, [1286] = {.lex_state = 146, .external_lex_state = 2}, [1287] = {.lex_state = 146, .external_lex_state = 2}, - [1288] = {.lex_state = 3, .external_lex_state = 2}, + [1288] = {.lex_state = 7, .external_lex_state = 2}, [1289] = {.lex_state = 146, .external_lex_state = 2}, [1290] = {.lex_state = 146, .external_lex_state = 2}, [1291] = {.lex_state = 146, .external_lex_state = 2}, - [1292] = {.lex_state = 146, .external_lex_state = 2}, - [1293] = {.lex_state = 146, .external_lex_state = 2}, - [1294] = {.lex_state = 146, .external_lex_state = 2}, + [1292] = {.lex_state = 146, .external_lex_state = 5}, + [1293] = {.lex_state = 146, .external_lex_state = 5}, + [1294] = {.lex_state = 3, .external_lex_state = 2}, [1295] = {.lex_state = 146, .external_lex_state = 2}, [1296] = {.lex_state = 146, .external_lex_state = 2}, [1297] = {.lex_state = 146, .external_lex_state = 2}, [1298] = {.lex_state = 146, .external_lex_state = 2}, [1299] = {.lex_state = 146, .external_lex_state = 2}, - [1300] = {.lex_state = 7, .external_lex_state = 2}, + [1300] = {.lex_state = 146, .external_lex_state = 2}, [1301] = {.lex_state = 146, .external_lex_state = 2}, [1302] = {.lex_state = 146, .external_lex_state = 2}, - [1303] = {.lex_state = 3, .external_lex_state = 2}, + [1303] = {.lex_state = 146, .external_lex_state = 2}, [1304] = {.lex_state = 146, .external_lex_state = 2}, [1305] = {.lex_state = 146, .external_lex_state = 2}, [1306] = {.lex_state = 146, .external_lex_state = 2}, [1307] = {.lex_state = 146, .external_lex_state = 2}, - [1308] = {.lex_state = 3, .external_lex_state = 2}, + [1308] = {.lex_state = 146, .external_lex_state = 2}, [1309] = {.lex_state = 146, .external_lex_state = 5}, - [1310] = {.lex_state = 146, .external_lex_state = 5}, + [1310] = {.lex_state = 146, .external_lex_state = 2}, [1311] = {.lex_state = 146, .external_lex_state = 2}, - [1312] = {.lex_state = 146, .external_lex_state = 5}, - [1313] = {.lex_state = 7, .external_lex_state = 2}, - [1314] = {.lex_state = 146, .external_lex_state = 2}, + [1312] = {.lex_state = 146, .external_lex_state = 2}, + [1313] = {.lex_state = 146, .external_lex_state = 5}, + [1314] = {.lex_state = 7, .external_lex_state = 2}, [1315] = {.lex_state = 146, .external_lex_state = 2}, [1316] = {.lex_state = 146, .external_lex_state = 2}, [1317] = {.lex_state = 146, .external_lex_state = 2}, @@ -8165,9 +8188,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1322] = {.lex_state = 146, .external_lex_state = 2}, [1323] = {.lex_state = 146, .external_lex_state = 2}, [1324] = {.lex_state = 146, .external_lex_state = 2}, - [1325] = {.lex_state = 146, .external_lex_state = 2}, - [1326] = {.lex_state = 146, .external_lex_state = 2}, - [1327] = {.lex_state = 3, .external_lex_state = 2}, + [1325] = {.lex_state = 3, .external_lex_state = 2}, + [1326] = {.lex_state = 146, .external_lex_state = 5}, + [1327] = {.lex_state = 146, .external_lex_state = 5}, [1328] = {.lex_state = 146, .external_lex_state = 2}, [1329] = {.lex_state = 146, .external_lex_state = 2}, [1330] = {.lex_state = 146, .external_lex_state = 2}, @@ -8176,49 +8199,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1333] = {.lex_state = 146, .external_lex_state = 2}, [1334] = {.lex_state = 146, .external_lex_state = 2}, [1335] = {.lex_state = 146, .external_lex_state = 2}, - [1336] = {.lex_state = 146, .external_lex_state = 2}, + [1336] = {.lex_state = 7, .external_lex_state = 2}, [1337] = {.lex_state = 146, .external_lex_state = 2}, [1338] = {.lex_state = 146, .external_lex_state = 2}, - [1339] = {.lex_state = 146, .external_lex_state = 2}, - [1340] = {.lex_state = 7, .external_lex_state = 2}, - [1341] = {.lex_state = 146, .external_lex_state = 2}, + [1339] = {.lex_state = 3, .external_lex_state = 2}, + [1340] = {.lex_state = 146, .external_lex_state = 2}, + [1341] = {.lex_state = 146, .external_lex_state = 5}, [1342] = {.lex_state = 146, .external_lex_state = 2}, [1343] = {.lex_state = 146, .external_lex_state = 2}, [1344] = {.lex_state = 146, .external_lex_state = 2}, - [1345] = {.lex_state = 7, .external_lex_state = 2}, + [1345] = {.lex_state = 146, .external_lex_state = 2}, [1346] = {.lex_state = 146, .external_lex_state = 2}, [1347] = {.lex_state = 146, .external_lex_state = 2}, [1348] = {.lex_state = 146, .external_lex_state = 2}, [1349] = {.lex_state = 146, .external_lex_state = 2}, [1350] = {.lex_state = 146, .external_lex_state = 2}, - [1351] = {.lex_state = 146, .external_lex_state = 5}, - [1352] = {.lex_state = 3, .external_lex_state = 2}, - [1353] = {.lex_state = 146, .external_lex_state = 2}, - [1354] = {.lex_state = 146, .external_lex_state = 2}, - [1355] = {.lex_state = 146, .external_lex_state = 5}, + [1351] = {.lex_state = 146, .external_lex_state = 2}, + [1352] = {.lex_state = 146, .external_lex_state = 2}, + [1353] = {.lex_state = 146, .external_lex_state = 5}, + [1354] = {.lex_state = 3, .external_lex_state = 2}, + [1355] = {.lex_state = 146, .external_lex_state = 2}, [1356] = {.lex_state = 146, .external_lex_state = 2}, [1357] = {.lex_state = 146, .external_lex_state = 2}, [1358] = {.lex_state = 146, .external_lex_state = 2}, - [1359] = {.lex_state = 146, .external_lex_state = 5}, + [1359] = {.lex_state = 7, .external_lex_state = 2}, [1360] = {.lex_state = 146, .external_lex_state = 2}, [1361] = {.lex_state = 146, .external_lex_state = 2}, [1362] = {.lex_state = 146, .external_lex_state = 2}, [1363] = {.lex_state = 146, .external_lex_state = 2}, [1364] = {.lex_state = 146, .external_lex_state = 2}, [1365] = {.lex_state = 146, .external_lex_state = 2}, - [1366] = {.lex_state = 146, .external_lex_state = 2}, - [1367] = {.lex_state = 146, .external_lex_state = 5}, - [1368] = {.lex_state = 146, .external_lex_state = 5}, + [1366] = {.lex_state = 146, .external_lex_state = 5}, + [1367] = {.lex_state = 146, .external_lex_state = 2}, + [1368] = {.lex_state = 146, .external_lex_state = 2}, [1369] = {.lex_state = 146, .external_lex_state = 2}, [1370] = {.lex_state = 146, .external_lex_state = 2}, - [1371] = {.lex_state = 146, .external_lex_state = 5}, + [1371] = {.lex_state = 146, .external_lex_state = 2}, [1372] = {.lex_state = 146, .external_lex_state = 2}, [1373] = {.lex_state = 146, .external_lex_state = 2}, [1374] = {.lex_state = 146, .external_lex_state = 2}, [1375] = {.lex_state = 146, .external_lex_state = 2}, [1376] = {.lex_state = 146, .external_lex_state = 2}, [1377] = {.lex_state = 146, .external_lex_state = 2}, - [1378] = {.lex_state = 7, .external_lex_state = 2}, + [1378] = {.lex_state = 146, .external_lex_state = 2}, [1379] = {.lex_state = 146, .external_lex_state = 2}, [1380] = {.lex_state = 146, .external_lex_state = 2}, [1381] = {.lex_state = 146, .external_lex_state = 2}, @@ -8228,7 +8251,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1385] = {.lex_state = 146, .external_lex_state = 2}, [1386] = {.lex_state = 146, .external_lex_state = 2}, [1387] = {.lex_state = 146, .external_lex_state = 2}, - [1388] = {.lex_state = 35, .external_lex_state = 2}, + [1388] = {.lex_state = 146, .external_lex_state = 2}, [1389] = {.lex_state = 146, .external_lex_state = 2}, [1390] = {.lex_state = 146, .external_lex_state = 2}, [1391] = {.lex_state = 146, .external_lex_state = 2}, @@ -8241,8 +8264,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1398] = {.lex_state = 146, .external_lex_state = 2}, [1399] = {.lex_state = 146, .external_lex_state = 2}, [1400] = {.lex_state = 146, .external_lex_state = 2}, - [1401] = {.lex_state = 7, .external_lex_state = 2}, - [1402] = {.lex_state = 146, .external_lex_state = 2}, + [1401] = {.lex_state = 146, .external_lex_state = 5}, + [1402] = {.lex_state = 146, .external_lex_state = 5}, [1403] = {.lex_state = 146, .external_lex_state = 2}, [1404] = {.lex_state = 146, .external_lex_state = 2}, [1405] = {.lex_state = 146, .external_lex_state = 2}, @@ -8257,33 +8280,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1414] = {.lex_state = 146, .external_lex_state = 2}, [1415] = {.lex_state = 146, .external_lex_state = 2}, [1416] = {.lex_state = 146, .external_lex_state = 2}, - [1417] = {.lex_state = 146, .external_lex_state = 2}, + [1417] = {.lex_state = 146, .external_lex_state = 5}, [1418] = {.lex_state = 146, .external_lex_state = 2}, [1419] = {.lex_state = 146, .external_lex_state = 2}, [1420] = {.lex_state = 146, .external_lex_state = 2}, [1421] = {.lex_state = 146, .external_lex_state = 2}, - [1422] = {.lex_state = 146, .external_lex_state = 5}, + [1422] = {.lex_state = 146, .external_lex_state = 2}, [1423] = {.lex_state = 146, .external_lex_state = 2}, [1424] = {.lex_state = 146, .external_lex_state = 2}, [1425] = {.lex_state = 146, .external_lex_state = 2}, [1426] = {.lex_state = 146, .external_lex_state = 2}, [1427] = {.lex_state = 146, .external_lex_state = 2}, - [1428] = {.lex_state = 146, .external_lex_state = 5}, - [1429] = {.lex_state = 146, .external_lex_state = 2}, + [1428] = {.lex_state = 146, .external_lex_state = 2}, + [1429] = {.lex_state = 7, .external_lex_state = 2}, [1430] = {.lex_state = 146, .external_lex_state = 2}, - [1431] = {.lex_state = 146, .external_lex_state = 5}, + [1431] = {.lex_state = 146, .external_lex_state = 2}, [1432] = {.lex_state = 146, .external_lex_state = 2}, [1433] = {.lex_state = 146, .external_lex_state = 2}, [1434] = {.lex_state = 146, .external_lex_state = 2}, [1435] = {.lex_state = 146, .external_lex_state = 2}, - [1436] = {.lex_state = 146, .external_lex_state = 2}, - [1437] = {.lex_state = 146, .external_lex_state = 2}, - [1438] = {.lex_state = 146, .external_lex_state = 2}, + [1436] = {.lex_state = 146, .external_lex_state = 5}, + [1437] = {.lex_state = 146, .external_lex_state = 5}, + [1438] = {.lex_state = 146, .external_lex_state = 5}, [1439] = {.lex_state = 146, .external_lex_state = 2}, [1440] = {.lex_state = 146, .external_lex_state = 2}, - [1441] = {.lex_state = 146, .external_lex_state = 2}, - [1442] = {.lex_state = 146, .external_lex_state = 2}, - [1443] = {.lex_state = 146, .external_lex_state = 5}, + [1441] = {.lex_state = 146, .external_lex_state = 5}, + [1442] = {.lex_state = 146, .external_lex_state = 5}, + [1443] = {.lex_state = 146, .external_lex_state = 2}, [1444] = {.lex_state = 146, .external_lex_state = 2}, [1445] = {.lex_state = 146, .external_lex_state = 2}, [1446] = {.lex_state = 146, .external_lex_state = 2}, @@ -8293,16 +8316,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1450] = {.lex_state = 146, .external_lex_state = 2}, [1451] = {.lex_state = 146, .external_lex_state = 2}, [1452] = {.lex_state = 146, .external_lex_state = 2}, - [1453] = {.lex_state = 146, .external_lex_state = 5}, + [1453] = {.lex_state = 146, .external_lex_state = 2}, [1454] = {.lex_state = 146, .external_lex_state = 2}, [1455] = {.lex_state = 146, .external_lex_state = 2}, [1456] = {.lex_state = 146, .external_lex_state = 2}, - [1457] = {.lex_state = 146, .external_lex_state = 2}, - [1458] = {.lex_state = 146, .external_lex_state = 5}, - [1459] = {.lex_state = 146, .external_lex_state = 2}, + [1457] = {.lex_state = 146, .external_lex_state = 5}, + [1458] = {.lex_state = 146, .external_lex_state = 2}, + [1459] = {.lex_state = 146, .external_lex_state = 5}, [1460] = {.lex_state = 146, .external_lex_state = 2}, [1461] = {.lex_state = 146, .external_lex_state = 2}, - [1462] = {.lex_state = 146, .external_lex_state = 2}, + [1462] = {.lex_state = 146, .external_lex_state = 5}, [1463] = {.lex_state = 146, .external_lex_state = 2}, [1464] = {.lex_state = 146, .external_lex_state = 2}, [1465] = {.lex_state = 146, .external_lex_state = 2}, @@ -8310,8 +8333,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1467] = {.lex_state = 146, .external_lex_state = 2}, [1468] = {.lex_state = 146, .external_lex_state = 2}, [1469] = {.lex_state = 146, .external_lex_state = 2}, - [1470] = {.lex_state = 146, .external_lex_state = 5}, - [1471] = {.lex_state = 146, .external_lex_state = 5}, + [1470] = {.lex_state = 146, .external_lex_state = 2}, + [1471] = {.lex_state = 146, .external_lex_state = 2}, [1472] = {.lex_state = 146, .external_lex_state = 2}, [1473] = {.lex_state = 146, .external_lex_state = 2}, [1474] = {.lex_state = 146, .external_lex_state = 2}, @@ -8319,7 +8342,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1476] = {.lex_state = 146, .external_lex_state = 2}, [1477] = {.lex_state = 146, .external_lex_state = 2}, [1478] = {.lex_state = 146, .external_lex_state = 2}, - [1479] = {.lex_state = 146, .external_lex_state = 2}, + [1479] = {.lex_state = 7, .external_lex_state = 2}, [1480] = {.lex_state = 146, .external_lex_state = 2}, [1481] = {.lex_state = 146, .external_lex_state = 2}, [1482] = {.lex_state = 146, .external_lex_state = 2}, @@ -8334,10 +8357,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1491] = {.lex_state = 146, .external_lex_state = 2}, [1492] = {.lex_state = 146, .external_lex_state = 2}, [1493] = {.lex_state = 146, .external_lex_state = 2}, - [1494] = {.lex_state = 146, .external_lex_state = 5}, + [1494] = {.lex_state = 146, .external_lex_state = 2}, [1495] = {.lex_state = 146, .external_lex_state = 2}, [1496] = {.lex_state = 146, .external_lex_state = 2}, - [1497] = {.lex_state = 146, .external_lex_state = 2}, + [1497] = {.lex_state = 146, .external_lex_state = 5}, [1498] = {.lex_state = 146, .external_lex_state = 2}, [1499] = {.lex_state = 146, .external_lex_state = 2}, [1500] = {.lex_state = 146, .external_lex_state = 2}, @@ -8346,7 +8369,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1503] = {.lex_state = 146, .external_lex_state = 2}, [1504] = {.lex_state = 146, .external_lex_state = 2}, [1505] = {.lex_state = 146, .external_lex_state = 2}, - [1506] = {.lex_state = 146, .external_lex_state = 2}, + [1506] = {.lex_state = 35, .external_lex_state = 2}, [1507] = {.lex_state = 146, .external_lex_state = 2}, [1508] = {.lex_state = 146, .external_lex_state = 2}, [1509] = {.lex_state = 146, .external_lex_state = 2}, @@ -8355,10 +8378,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1512] = {.lex_state = 146, .external_lex_state = 2}, [1513] = {.lex_state = 146, .external_lex_state = 2}, [1514] = {.lex_state = 146, .external_lex_state = 2}, - [1515] = {.lex_state = 146, .external_lex_state = 2}, + [1515] = {.lex_state = 146, .external_lex_state = 5}, [1516] = {.lex_state = 146, .external_lex_state = 2}, [1517] = {.lex_state = 146, .external_lex_state = 2}, - [1518] = {.lex_state = 146, .external_lex_state = 5}, + [1518] = {.lex_state = 146, .external_lex_state = 2}, [1519] = {.lex_state = 146, .external_lex_state = 2}, [1520] = {.lex_state = 146, .external_lex_state = 2}, [1521] = {.lex_state = 146, .external_lex_state = 2}, @@ -8366,22 +8389,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1523] = {.lex_state = 146, .external_lex_state = 2}, [1524] = {.lex_state = 146, .external_lex_state = 2}, [1525] = {.lex_state = 146, .external_lex_state = 2}, - [1526] = {.lex_state = 146, .external_lex_state = 5}, + [1526] = {.lex_state = 146, .external_lex_state = 2}, [1527] = {.lex_state = 146, .external_lex_state = 2}, [1528] = {.lex_state = 146, .external_lex_state = 2}, - [1529] = {.lex_state = 146, .external_lex_state = 5}, - [1530] = {.lex_state = 146, .external_lex_state = 5}, + [1529] = {.lex_state = 146, .external_lex_state = 2}, + [1530] = {.lex_state = 146, .external_lex_state = 2}, [1531] = {.lex_state = 146, .external_lex_state = 2}, [1532] = {.lex_state = 146, .external_lex_state = 2}, [1533] = {.lex_state = 146, .external_lex_state = 2}, [1534] = {.lex_state = 146, .external_lex_state = 2}, - [1535] = {.lex_state = 146, .external_lex_state = 2}, - [1536] = {.lex_state = 146, .external_lex_state = 2}, + [1535] = {.lex_state = 146, .external_lex_state = 5}, + [1536] = {.lex_state = 146, .external_lex_state = 5}, [1537] = {.lex_state = 146, .external_lex_state = 2}, - [1538] = {.lex_state = 7, .external_lex_state = 2}, + [1538] = {.lex_state = 146, .external_lex_state = 2}, [1539] = {.lex_state = 146, .external_lex_state = 2}, [1540] = {.lex_state = 146, .external_lex_state = 2}, - [1541] = {.lex_state = 146, .external_lex_state = 2}, + [1541] = {.lex_state = 146, .external_lex_state = 5}, [1542] = {.lex_state = 146, .external_lex_state = 2}, [1543] = {.lex_state = 146, .external_lex_state = 2}, [1544] = {.lex_state = 146, .external_lex_state = 2}, @@ -8397,25 +8420,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1554] = {.lex_state = 146, .external_lex_state = 2}, [1555] = {.lex_state = 146, .external_lex_state = 2}, [1556] = {.lex_state = 146, .external_lex_state = 2}, - [1557] = {.lex_state = 146, .external_lex_state = 5}, + [1557] = {.lex_state = 146, .external_lex_state = 2}, [1558] = {.lex_state = 146, .external_lex_state = 2}, - [1559] = {.lex_state = 146, .external_lex_state = 5}, + [1559] = {.lex_state = 146, .external_lex_state = 2}, [1560] = {.lex_state = 146, .external_lex_state = 2}, - [1561] = {.lex_state = 146, .external_lex_state = 5}, + [1561] = {.lex_state = 146, .external_lex_state = 2}, [1562] = {.lex_state = 146, .external_lex_state = 2}, [1563] = {.lex_state = 146, .external_lex_state = 2}, [1564] = {.lex_state = 146, .external_lex_state = 2}, [1565] = {.lex_state = 146, .external_lex_state = 2}, - [1566] = {.lex_state = 7, .external_lex_state = 2}, + [1566] = {.lex_state = 146, .external_lex_state = 2}, [1567] = {.lex_state = 146, .external_lex_state = 2}, [1568] = {.lex_state = 146, .external_lex_state = 2}, [1569] = {.lex_state = 146, .external_lex_state = 2}, - [1570] = {.lex_state = 146, .external_lex_state = 5}, + [1570] = {.lex_state = 146, .external_lex_state = 2}, [1571] = {.lex_state = 146, .external_lex_state = 2}, [1572] = {.lex_state = 146, .external_lex_state = 2}, - [1573] = {.lex_state = 146, .external_lex_state = 2}, + [1573] = {.lex_state = 7, .external_lex_state = 2}, [1574] = {.lex_state = 146, .external_lex_state = 2}, - [1575] = {.lex_state = 146, .external_lex_state = 2}, + [1575] = {.lex_state = 146, .external_lex_state = 5}, [1576] = {.lex_state = 146, .external_lex_state = 2}, [1577] = {.lex_state = 146, .external_lex_state = 2}, [1578] = {.lex_state = 146, .external_lex_state = 2}, @@ -8423,19 +8446,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1580] = {.lex_state = 146, .external_lex_state = 2}, [1581] = {.lex_state = 146, .external_lex_state = 2}, [1582] = {.lex_state = 146, .external_lex_state = 2}, - [1583] = {.lex_state = 146, .external_lex_state = 2}, + [1583] = {.lex_state = 146, .external_lex_state = 5}, [1584] = {.lex_state = 146, .external_lex_state = 2}, - [1585] = {.lex_state = 146, .external_lex_state = 2}, - [1586] = {.lex_state = 146, .external_lex_state = 2}, + [1585] = {.lex_state = 146, .external_lex_state = 5}, + [1586] = {.lex_state = 146, .external_lex_state = 5}, [1587] = {.lex_state = 146, .external_lex_state = 2}, [1588] = {.lex_state = 146, .external_lex_state = 2}, [1589] = {.lex_state = 146, .external_lex_state = 2}, [1590] = {.lex_state = 146, .external_lex_state = 2}, [1591] = {.lex_state = 146, .external_lex_state = 2}, [1592] = {.lex_state = 146, .external_lex_state = 2}, - [1593] = {.lex_state = 146, .external_lex_state = 5}, + [1593] = {.lex_state = 146, .external_lex_state = 2}, [1594] = {.lex_state = 146, .external_lex_state = 2}, - [1595] = {.lex_state = 146, .external_lex_state = 2}, + [1595] = {.lex_state = 146, .external_lex_state = 5}, [1596] = {.lex_state = 146, .external_lex_state = 2}, [1597] = {.lex_state = 146, .external_lex_state = 2}, [1598] = {.lex_state = 146, .external_lex_state = 2}, @@ -8446,18 +8469,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1603] = {.lex_state = 146, .external_lex_state = 2}, [1604] = {.lex_state = 146, .external_lex_state = 2}, [1605] = {.lex_state = 146, .external_lex_state = 2}, - [1606] = {.lex_state = 146, .external_lex_state = 2}, - [1607] = {.lex_state = 146, .external_lex_state = 2}, + [1606] = {.lex_state = 4, .external_lex_state = 8}, + [1607] = {.lex_state = 4, .external_lex_state = 8}, [1608] = {.lex_state = 146, .external_lex_state = 2}, [1609] = {.lex_state = 146, .external_lex_state = 2}, [1610] = {.lex_state = 146, .external_lex_state = 2}, - [1611] = {.lex_state = 4, .external_lex_state = 8}, + [1611] = {.lex_state = 146, .external_lex_state = 2}, [1612] = {.lex_state = 146, .external_lex_state = 2}, [1613] = {.lex_state = 146, .external_lex_state = 2}, [1614] = {.lex_state = 146, .external_lex_state = 2}, [1615] = {.lex_state = 146, .external_lex_state = 2}, [1616] = {.lex_state = 146, .external_lex_state = 2}, - [1617] = {.lex_state = 146, .external_lex_state = 2}, + [1617] = {.lex_state = 36, .external_lex_state = 2}, [1618] = {.lex_state = 146, .external_lex_state = 2}, [1619] = {.lex_state = 146, .external_lex_state = 2}, [1620] = {.lex_state = 146, .external_lex_state = 2}, @@ -8466,7 +8489,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1623] = {.lex_state = 146, .external_lex_state = 2}, [1624] = {.lex_state = 146, .external_lex_state = 2}, [1625] = {.lex_state = 146, .external_lex_state = 2}, - [1626] = {.lex_state = 36, .external_lex_state = 2}, + [1626] = {.lex_state = 146, .external_lex_state = 2}, [1627] = {.lex_state = 146, .external_lex_state = 2}, [1628] = {.lex_state = 146, .external_lex_state = 2}, [1629] = {.lex_state = 146, .external_lex_state = 2}, @@ -8476,23 +8499,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1633] = {.lex_state = 146, .external_lex_state = 2}, [1634] = {.lex_state = 146, .external_lex_state = 2}, [1635] = {.lex_state = 146, .external_lex_state = 2}, - [1636] = {.lex_state = 36, .external_lex_state = 2}, - [1637] = {.lex_state = 146, .external_lex_state = 2}, + [1636] = {.lex_state = 146, .external_lex_state = 2}, + [1637] = {.lex_state = 4, .external_lex_state = 8}, [1638] = {.lex_state = 146, .external_lex_state = 2}, [1639] = {.lex_state = 146, .external_lex_state = 2}, [1640] = {.lex_state = 146, .external_lex_state = 2}, - [1641] = {.lex_state = 36, .external_lex_state = 2}, + [1641] = {.lex_state = 146, .external_lex_state = 2}, [1642] = {.lex_state = 146, .external_lex_state = 2}, [1643] = {.lex_state = 146, .external_lex_state = 2}, - [1644] = {.lex_state = 146, .external_lex_state = 2}, + [1644] = {.lex_state = 36, .external_lex_state = 2}, [1645] = {.lex_state = 146, .external_lex_state = 2}, [1646] = {.lex_state = 146, .external_lex_state = 2}, - [1647] = {.lex_state = 4, .external_lex_state = 8}, + [1647] = {.lex_state = 146, .external_lex_state = 2}, [1648] = {.lex_state = 36, .external_lex_state = 2}, [1649] = {.lex_state = 146, .external_lex_state = 2}, [1650] = {.lex_state = 146, .external_lex_state = 2}, [1651] = {.lex_state = 146, .external_lex_state = 2}, - [1652] = {.lex_state = 4, .external_lex_state = 8}, + [1652] = {.lex_state = 146, .external_lex_state = 2}, [1653] = {.lex_state = 146, .external_lex_state = 2}, [1654] = {.lex_state = 146, .external_lex_state = 2}, [1655] = {.lex_state = 146, .external_lex_state = 2}, @@ -8511,7 +8534,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1668] = {.lex_state = 146, .external_lex_state = 2}, [1669] = {.lex_state = 146, .external_lex_state = 2}, [1670] = {.lex_state = 146, .external_lex_state = 2}, - [1671] = {.lex_state = 4, .external_lex_state = 8}, + [1671] = {.lex_state = 146, .external_lex_state = 2}, [1672] = {.lex_state = 146, .external_lex_state = 2}, [1673] = {.lex_state = 146, .external_lex_state = 2}, [1674] = {.lex_state = 146, .external_lex_state = 2}, @@ -8523,7 +8546,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1680] = {.lex_state = 146, .external_lex_state = 2}, [1681] = {.lex_state = 146, .external_lex_state = 2}, [1682] = {.lex_state = 146, .external_lex_state = 2}, - [1683] = {.lex_state = 146, .external_lex_state = 2}, + [1683] = {.lex_state = 4, .external_lex_state = 8}, [1684] = {.lex_state = 146, .external_lex_state = 2}, [1685] = {.lex_state = 146, .external_lex_state = 2}, [1686] = {.lex_state = 146, .external_lex_state = 2}, @@ -8534,6 +8557,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1691] = {.lex_state = 146, .external_lex_state = 2}, [1692] = {.lex_state = 146, .external_lex_state = 2}, [1693] = {.lex_state = 146, .external_lex_state = 2}, + [1694] = {.lex_state = 36, .external_lex_state = 2}, + [1695] = {.lex_state = 146, .external_lex_state = 2}, + [1696] = {.lex_state = 146, .external_lex_state = 2}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -8646,6 +8672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(1), [sym_private_property_identifier] = ACTIONS(1), [anon_sym_target] = ACTIONS(1), + [anon_sym_meta] = ACTIONS(1), [sym_this] = ACTIONS(1), [sym_super] = ACTIONS(1), [sym_true] = ACTIONS(1), @@ -8663,72 +8690,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1] = { - [sym_program] = STATE(1645), - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), + [sym_program] = STATE(1675), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(1171), + [aux_sym_export_statement_repeat1] = STATE(1141), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -8790,81 +8817,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(20), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1628), - [sym_object_assignment_pattern] = STATE(1265), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1628), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1628), - [sym_spread_element] = STATE(1264), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(785), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [sym_rest_pattern] = STATE(1265), - [sym_method_definition] = STATE(1264), - [sym_pair] = STATE(1264), - [sym_pair_pattern] = STATE(1265), - [sym__property_name] = STATE(1275), - [sym_computed_property_name] = STATE(1275), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(877), - [aux_sym_object_repeat1] = STATE(1269), - [aux_sym_object_pattern_repeat1] = STATE(1357), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1662), + [sym_object_assignment_pattern] = STATE(1343), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1662), + [sym_spread_element] = STATE(1306), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(756), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [sym_rest_pattern] = STATE(1343), + [sym_method_definition] = STATE(1306), + [sym_pair] = STATE(1306), + [sym_pair_pattern] = STATE(1343), + [sym__property_name] = STATE(1346), + [sym_computed_property_name] = STATE(1346), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(881), + [aux_sym_object_repeat1] = STATE(1307), + [aux_sym_object_pattern_repeat1] = STATE(1348), [sym_identifier] = ACTIONS(97), [anon_sym_export] = ACTIONS(99), [anon_sym_STAR] = ACTIONS(101), @@ -8929,81 +8956,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(17), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1628), - [sym_object_assignment_pattern] = STATE(1265), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1628), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1628), - [sym_spread_element] = STATE(1272), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(785), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [sym_rest_pattern] = STATE(1265), - [sym_method_definition] = STATE(1272), - [sym_pair] = STATE(1272), - [sym_pair_pattern] = STATE(1265), - [sym__property_name] = STATE(1275), - [sym_computed_property_name] = STATE(1275), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(877), - [aux_sym_object_repeat1] = STATE(1299), - [aux_sym_object_pattern_repeat1] = STATE(1357), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(25), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1662), + [sym_object_assignment_pattern] = STATE(1343), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1662), + [sym_spread_element] = STATE(1345), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(756), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [sym_rest_pattern] = STATE(1343), + [sym_method_definition] = STATE(1345), + [sym_pair] = STATE(1345), + [sym_pair_pattern] = STATE(1343), + [sym__property_name] = STATE(1346), + [sym_computed_property_name] = STATE(1346), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(881), + [aux_sym_object_repeat1] = STATE(1347), + [aux_sym_object_pattern_repeat1] = STATE(1348), [sym_identifier] = ACTIONS(125), [anon_sym_export] = ACTIONS(127), [anon_sym_STAR] = ACTIONS(101), @@ -9068,81 +9095,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(17), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1628), - [sym_object_assignment_pattern] = STATE(1265), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1628), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1628), - [sym_spread_element] = STATE(1272), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(785), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [sym_rest_pattern] = STATE(1265), - [sym_method_definition] = STATE(1272), - [sym_pair] = STATE(1272), - [sym_pair_pattern] = STATE(1265), - [sym__property_name] = STATE(1275), - [sym_computed_property_name] = STATE(1275), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(877), - [aux_sym_object_repeat1] = STATE(1299), - [aux_sym_object_pattern_repeat1] = STATE(1357), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(25), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1662), + [sym_object_assignment_pattern] = STATE(1343), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1662), + [sym_spread_element] = STATE(1345), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(756), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [sym_rest_pattern] = STATE(1343), + [sym_method_definition] = STATE(1345), + [sym_pair] = STATE(1345), + [sym_pair_pattern] = STATE(1343), + [sym__property_name] = STATE(1346), + [sym_computed_property_name] = STATE(1346), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(881), + [aux_sym_object_repeat1] = STATE(1347), + [aux_sym_object_pattern_repeat1] = STATE(1348), [sym_identifier] = ACTIONS(125), [anon_sym_export] = ACTIONS(127), [anon_sym_STAR] = ACTIONS(101), @@ -9207,91 +9234,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(12), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1628), - [sym_object_assignment_pattern] = STATE(1265), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1628), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1628), - [sym_spread_element] = STATE(1272), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(785), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [sym_rest_pattern] = STATE(1265), - [sym_method_definition] = STATE(1272), - [sym_pair] = STATE(1272), - [sym_pair_pattern] = STATE(1265), - [sym__property_name] = STATE(1275), - [sym_computed_property_name] = STATE(1275), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(877), - [aux_sym_object_repeat1] = STATE(1299), - [aux_sym_object_pattern_repeat1] = STATE(1357), - [sym_identifier] = ACTIONS(125), - [anon_sym_export] = ACTIONS(127), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1662), + [sym_object_assignment_pattern] = STATE(1343), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1662), + [sym_spread_element] = STATE(1306), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(756), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [sym_rest_pattern] = STATE(1343), + [sym_method_definition] = STATE(1306), + [sym_pair] = STATE(1306), + [sym_pair_pattern] = STATE(1343), + [sym__property_name] = STATE(1346), + [sym_computed_property_name] = STATE(1346), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(881), + [aux_sym_object_repeat1] = STATE(1307), + [aux_sym_object_pattern_repeat1] = STATE(1348), + [sym_identifier] = ACTIONS(141), + [anon_sym_export] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(101), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(141), + [anon_sym_RBRACE] = ACTIONS(105), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(131), + [anon_sym_let] = ACTIONS(145), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), @@ -9314,7 +9341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(133), + [anon_sym_async] = ACTIONS(147), [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -9339,98 +9366,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(135), + [anon_sym_static] = ACTIONS(149), [aux_sym_method_definition_token1] = ACTIONS(121), - [anon_sym_get] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), + [anon_sym_get] = ACTIONS(151), + [anon_sym_set] = ACTIONS(151), [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(20), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1628), - [sym_object_assignment_pattern] = STATE(1265), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1628), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1628), - [sym_spread_element] = STATE(1264), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(785), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [sym_rest_pattern] = STATE(1265), - [sym_method_definition] = STATE(1264), - [sym_pair] = STATE(1264), - [sym_pair_pattern] = STATE(1265), - [sym__property_name] = STATE(1275), - [sym_computed_property_name] = STATE(1275), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(877), - [aux_sym_object_repeat1] = STATE(1269), - [aux_sym_object_pattern_repeat1] = STATE(1357), - [sym_identifier] = ACTIONS(143), - [anon_sym_export] = ACTIONS(145), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1662), + [sym_object_assignment_pattern] = STATE(1343), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1662), + [sym_spread_element] = STATE(1345), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(756), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [sym_rest_pattern] = STATE(1343), + [sym_method_definition] = STATE(1345), + [sym_pair] = STATE(1345), + [sym_pair_pattern] = STATE(1343), + [sym__property_name] = STATE(1346), + [sym_computed_property_name] = STATE(1346), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(881), + [aux_sym_object_repeat1] = STATE(1347), + [aux_sym_object_pattern_repeat1] = STATE(1348), + [sym_identifier] = ACTIONS(125), + [anon_sym_export] = ACTIONS(127), [anon_sym_STAR] = ACTIONS(101), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(105), + [anon_sym_RBRACE] = ACTIONS(153), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(147), + [anon_sym_let] = ACTIONS(131), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), @@ -9453,7 +9480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(149), + [anon_sym_async] = ACTIONS(133), [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -9478,78 +9505,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(151), + [anon_sym_static] = ACTIONS(135), [aux_sym_method_definition_token1] = ACTIONS(121), - [anon_sym_get] = ACTIONS(153), - [anon_sym_set] = ACTIONS(153), + [anon_sym_get] = ACTIONS(137), + [anon_sym_set] = ACTIONS(137), [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1171), + [aux_sym_export_statement_repeat1] = STATE(1141), [ts_builtin_sym_end] = ACTIONS(155), [sym_identifier] = ACTIONS(157), [anon_sym_export] = ACTIONS(160), @@ -9613,71 +9640,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1171), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(11), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(288), @@ -9740,71 +9767,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(8), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_program_repeat1] = STATE(8), - [aux_sym_export_statement_repeat1] = STATE(1171), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(292), @@ -9867,71 +9894,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(11), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(1171), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(296), @@ -9994,71 +10021,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1171), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(300), @@ -10121,71 +10148,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1171), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -10246,71 +10273,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [13] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1171), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -10371,71 +10398,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [14] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), [sym_statement] = STATE(17), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(1171), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -10496,71 +10523,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1171), + [aux_sym_export_statement_repeat1] = STATE(1141), [ts_builtin_sym_end] = ACTIONS(310), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), @@ -10621,71 +10648,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1171), + [aux_sym_export_statement_repeat1] = STATE(1141), [ts_builtin_sym_end] = ACTIONS(312), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), @@ -10746,71 +10773,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1171), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -10871,71 +10898,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(12), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(1171), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -10996,75 +11023,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(15), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1171), - [ts_builtin_sym_end] = ACTIONS(312), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(318), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11121,75 +11148,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1171), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(318), + [anon_sym_RBRACE] = ACTIONS(320), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11246,75 +11273,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(20), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(1171), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(25), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_RBRACE] = ACTIONS(322), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11371,75 +11398,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1171), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(324), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11496,75 +11523,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(22), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(1171), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_RBRACE] = ACTIONS(326), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11621,75 +11648,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1171), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(15), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1141), + [ts_builtin_sym_end] = ACTIONS(312), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(326), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11746,71 +11773,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(1171), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -11871,71 +11898,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(13), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(1171), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(20), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -11996,70 +12023,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(389), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(356), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1143), [sym_identifier] = ACTIONS(332), [anon_sym_export] = ACTIONS(334), [anon_sym_LBRACE] = ACTIONS(336), @@ -12119,84 +12146,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [28] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(382), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1171), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(1616), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1143), + [sym_identifier] = ACTIONS(332), + [anon_sym_export] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(338), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(340), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), + [anon_sym_if] = ACTIONS(342), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), + [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(346), [anon_sym_do] = ACTIONS(39), [anon_sym_try] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), @@ -12211,9 +12238,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(348), + [anon_sym_async] = ACTIONS(350), + [anon_sym_function] = ACTIONS(352), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -12236,90 +12263,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, [29] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(389), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1171), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(371), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1143), + [sym_identifier] = ACTIONS(332), + [anon_sym_export] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(338), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(340), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), + [anon_sym_if] = ACTIONS(342), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), + [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(346), [anon_sym_do] = ACTIONS(39), [anon_sym_try] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), @@ -12334,9 +12361,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(348), + [anon_sym_async] = ACTIONS(350), + [anon_sym_function] = ACTIONS(352), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -12359,76 +12386,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, [30] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(346), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1171), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(377), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -12488,84 +12515,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [31] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(390), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1171), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(364), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1143), + [sym_identifier] = ACTIONS(332), + [anon_sym_export] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(338), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(340), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), + [anon_sym_if] = ACTIONS(342), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), + [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(346), [anon_sym_do] = ACTIONS(39), [anon_sym_try] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), @@ -12580,9 +12607,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(348), + [anon_sym_async] = ACTIONS(350), + [anon_sym_function] = ACTIONS(352), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -12605,90 +12632,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, [32] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(371), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1173), - [sym_identifier] = ACTIONS(332), - [anon_sym_export] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(336), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(352), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(338), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(340), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(342), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(344), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(346), + [anon_sym_while] = ACTIONS(37), [anon_sym_do] = ACTIONS(39), [anon_sym_try] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), @@ -12703,9 +12730,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(348), - [anon_sym_async] = ACTIONS(350), - [anon_sym_function] = ACTIONS(352), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -12728,90 +12755,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(354), - [anon_sym_get] = ACTIONS(354), - [anon_sym_set] = ACTIONS(354), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, [33] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(382), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1173), - [sym_identifier] = ACTIONS(332), - [anon_sym_export] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(336), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(364), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(338), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(340), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(342), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(344), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(346), + [anon_sym_while] = ACTIONS(37), [anon_sym_do] = ACTIONS(39), [anon_sym_try] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), @@ -12826,9 +12853,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(348), - [anon_sym_async] = ACTIONS(350), - [anon_sym_function] = ACTIONS(352), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -12851,76 +12878,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(354), - [anon_sym_get] = ACTIONS(354), - [anon_sym_set] = ACTIONS(354), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, [34] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(341), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(377), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1143), [sym_identifier] = ACTIONS(332), [anon_sym_export] = ACTIONS(334), [anon_sym_LBRACE] = ACTIONS(336), @@ -12980,70 +13007,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [35] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(346), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(352), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1143), [sym_identifier] = ACTIONS(332), [anon_sym_export] = ACTIONS(334), [anon_sym_LBRACE] = ACTIONS(336), @@ -13103,70 +13130,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [36] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(365), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1171), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(341), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -13226,84 +13253,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [37] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(371), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1171), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(1268), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1143), + [sym_identifier] = ACTIONS(332), + [anon_sym_export] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(338), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(340), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), + [anon_sym_if] = ACTIONS(342), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), + [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(346), [anon_sym_do] = ACTIONS(39), [anon_sym_try] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), @@ -13318,9 +13345,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(348), + [anon_sym_async] = ACTIONS(350), + [anon_sym_function] = ACTIONS(352), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -13343,76 +13370,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, [38] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(341), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1171), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(371), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1141), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -13472,84 +13499,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [39] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(327), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1171), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(389), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1143), + [sym_identifier] = ACTIONS(332), + [anon_sym_export] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(338), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(340), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), + [anon_sym_if] = ACTIONS(342), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), + [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(346), [anon_sym_do] = ACTIONS(39), [anon_sym_try] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), @@ -13564,9 +13591,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(348), + [anon_sym_async] = ACTIONS(350), + [anon_sym_function] = ACTIONS(352), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -13589,90 +13616,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, [40] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(1326), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1173), - [sym_identifier] = ACTIONS(332), - [anon_sym_export] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(336), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(390), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(338), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(340), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(342), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(344), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(346), + [anon_sym_while] = ACTIONS(37), [anon_sym_do] = ACTIONS(39), [anon_sym_try] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), @@ -13687,9 +13714,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(348), - [anon_sym_async] = ACTIONS(350), - [anon_sym_function] = ACTIONS(352), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -13712,76 +13739,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(354), - [anon_sym_get] = ACTIONS(354), - [anon_sym_set] = ACTIONS(354), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, [41] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(390), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1173), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(341), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1143), [sym_identifier] = ACTIONS(332), [anon_sym_export] = ACTIONS(334), [anon_sym_LBRACE] = ACTIONS(336), @@ -13841,84 +13868,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [42] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(379), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1171), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(390), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1143), + [sym_identifier] = ACTIONS(332), + [anon_sym_export] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(338), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(340), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), + [anon_sym_if] = ACTIONS(342), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), + [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), + [anon_sym_while] = ACTIONS(346), [anon_sym_do] = ACTIONS(39), [anon_sym_try] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), @@ -13933,9 +13960,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(348), + [anon_sym_async] = ACTIONS(350), + [anon_sym_function] = ACTIONS(352), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -13958,90 +13985,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, [43] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(1644), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1173), - [sym_identifier] = ACTIONS(332), - [anon_sym_export] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(336), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(389), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(338), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(340), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(342), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(344), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(346), + [anon_sym_while] = ACTIONS(37), [anon_sym_do] = ACTIONS(39), [anon_sym_try] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), @@ -14056,9 +14083,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(348), - [anon_sym_async] = ACTIONS(350), - [anon_sym_function] = ACTIONS(352), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -14081,90 +14108,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(354), - [anon_sym_get] = ACTIONS(354), - [anon_sym_set] = ACTIONS(354), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, [44] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(365), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1173), - [sym_identifier] = ACTIONS(332), - [anon_sym_export] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(336), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(314), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(338), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(340), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(342), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(344), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(346), + [anon_sym_while] = ACTIONS(37), [anon_sym_do] = ACTIONS(39), [anon_sym_try] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), @@ -14179,9 +14206,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(348), - [anon_sym_async] = ACTIONS(350), - [anon_sym_function] = ACTIONS(352), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -14204,90 +14231,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(354), - [anon_sym_get] = ACTIONS(354), - [anon_sym_set] = ACTIONS(354), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, [45] = { - [sym_export_statement] = STATE(352), - [sym_declaration] = STATE(352), - [sym_import] = STATE(1095), - [sym_import_statement] = STATE(352), - [sym_statement] = STATE(379), - [sym_expression_statement] = STATE(352), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_statement_block] = STATE(352), - [sym_if_statement] = STATE(352), - [sym_switch_statement] = STATE(352), - [sym_for_statement] = STATE(352), - [sym_for_in_statement] = STATE(352), - [sym_while_statement] = STATE(352), - [sym_do_statement] = STATE(352), - [sym_try_statement] = STATE(352), - [sym_with_statement] = STATE(352), - [sym_break_statement] = STATE(352), - [sym_continue_statement] = STATE(352), - [sym_debugger_statement] = STATE(352), - [sym_return_statement] = STATE(352), - [sym_throw_statement] = STATE(352), - [sym_empty_statement] = STATE(352), - [sym_labeled_statement] = STATE(352), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1173), - [sym_identifier] = ACTIONS(332), - [anon_sym_export] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(336), + [sym_export_statement] = STATE(359), + [sym_declaration] = STATE(359), + [sym_import] = STATE(1117), + [sym_import_statement] = STATE(359), + [sym_statement] = STATE(356), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_statement_block] = STATE(359), + [sym_if_statement] = STATE(359), + [sym_switch_statement] = STATE(359), + [sym_for_statement] = STATE(359), + [sym_for_in_statement] = STATE(359), + [sym_while_statement] = STATE(359), + [sym_do_statement] = STATE(359), + [sym_try_statement] = STATE(359), + [sym_with_statement] = STATE(359), + [sym_break_statement] = STATE(359), + [sym_continue_statement] = STATE(359), + [sym_debugger_statement] = STATE(359), + [sym_return_statement] = STATE(359), + [sym_throw_statement] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_labeled_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(338), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(340), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(342), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(344), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(346), + [anon_sym_while] = ACTIONS(37), [anon_sym_do] = ACTIONS(39), [anon_sym_try] = ACTIONS(41), [anon_sym_break] = ACTIONS(43), @@ -14302,9 +14329,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(348), - [anon_sym_async] = ACTIONS(350), - [anon_sym_function] = ACTIONS(352), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -14327,49 +14354,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(354), - [anon_sym_get] = ACTIONS(354), - [anon_sym_set] = ACTIONS(354), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, [46] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(505), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(552), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_STAR] = ACTIONS(360), @@ -14443,50 +14470,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [47] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), [sym_expression] = STATE(583), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_STAR] = ACTIONS(416), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_COMMA] = ACTIONS(364), [anon_sym_RBRACE] = ACTIONS(364), - [anon_sym_import] = ACTIONS(366), + [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), @@ -14500,9 +14527,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(372), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), [sym_optional_chain] = ACTIONS(364), [anon_sym_new] = ACTIONS(73), [anon_sym_AMP_AMP] = ACTIONS(364), @@ -14552,56 +14579,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [48] = { - [sym_import] = STATE(1095), + [sym_import] = STATE(1117), [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(639), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), + [sym_expression] = STATE(585), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), [sym_member_expression] = STATE(460), [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), - [anon_sym_STAR] = ACTIONS(430), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_COMMA] = ACTIONS(364), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), + [anon_sym_await] = ACTIONS(434), [anon_sym_in] = ACTIONS(372), [anon_sym_of] = ACTIONS(372), [anon_sym_SEMI] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), @@ -14609,11 +14636,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(372), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), [sym_optional_chain] = ACTIONS(364), - [anon_sym_new] = ACTIONS(438), + [anon_sym_new] = ACTIONS(440), [anon_sym_AMP_AMP] = ACTIONS(364), [anon_sym_PIPE_PIPE] = ACTIONS(364), [anon_sym_GT_GT] = ACTIONS(372), @@ -14622,9 +14649,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(372), [anon_sym_CARET] = ACTIONS(364), [anon_sym_PIPE] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), [anon_sym_PERCENT] = ACTIONS(364), [anon_sym_STAR_STAR] = ACTIONS(364), [anon_sym_LT_EQ] = ACTIONS(364), @@ -14635,81 +14662,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(364), [anon_sym_QMARK_QMARK] = ACTIONS(364), [anon_sym_instanceof] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(440), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym__automatic_semicolon] = ACTIONS(364), [sym__ternary_qmark] = ACTIONS(364), [sym_html_comment] = ACTIONS(5), }, [49] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(798), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_STAR] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(765), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_STAR] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), + [anon_sym_await] = ACTIONS(462), [anon_sym_in] = ACTIONS(372), - [anon_sym_of] = ACTIONS(372), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_COLON] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_GT] = ACTIONS(372), @@ -14717,10 +14744,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), [sym_optional_chain] = ACTIONS(364), - [anon_sym_new] = ACTIONS(468), + [anon_sym_new] = ACTIONS(470), [anon_sym_AMP_AMP] = ACTIONS(364), [anon_sym_PIPE_PIPE] = ACTIONS(364), [anon_sym_GT_GT] = ACTIONS(372), @@ -14729,9 +14756,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(372), [anon_sym_CARET] = ACTIONS(364), [anon_sym_PIPE] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), [anon_sym_PERCENT] = ACTIONS(364), [anon_sym_STAR_STAR] = ACTIONS(364), [anon_sym_LT_EQ] = ACTIONS(364), @@ -14742,11 +14769,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(364), [anon_sym_QMARK_QMARK] = ACTIONS(364), [anon_sym_instanceof] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(472), [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), [anon_sym_PLUS_PLUS] = ACTIONS(476), [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), @@ -14760,62 +14787,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(408), [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym__ternary_qmark] = ACTIONS(364), [sym_html_comment] = ACTIONS(5), }, [50] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(761), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(796), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), [anon_sym_STAR] = ACTIONS(486), - [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(488), [anon_sym_in] = ACTIONS(372), - [anon_sym_COLON] = ACTIONS(364), + [anon_sym_of] = ACTIONS(372), [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_GT] = ACTIONS(372), @@ -14837,7 +14864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(372), [anon_sym_PLUS] = ACTIONS(496), [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(498), [anon_sym_PERCENT] = ACTIONS(364), [anon_sym_STAR_STAR] = ACTIONS(364), [anon_sym_LT_EQ] = ACTIONS(364), @@ -14849,22 +14876,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_QMARK] = ACTIONS(364), [anon_sym_instanceof] = ACTIONS(372), [anon_sym_BANG] = ACTIONS(496), - [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(500), [anon_sym_typeof] = ACTIONS(496), [anon_sym_void] = ACTIONS(496), [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(484), [anon_sym_get] = ACTIONS(484), @@ -14873,607 +14900,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [51] = { - [ts_builtin_sym_end] = ACTIONS(506), - [sym_identifier] = ACTIONS(508), - [anon_sym_export] = ACTIONS(508), - [anon_sym_STAR] = ACTIONS(510), - [anon_sym_default] = ACTIONS(508), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_import] = ACTIONS(508), - [anon_sym_with] = ACTIONS(508), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(508), - [anon_sym_const] = ACTIONS(508), - [anon_sym_else] = ACTIONS(508), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_for] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(506), - [anon_sym_await] = ACTIONS(508), - [anon_sym_in] = ACTIONS(510), - [anon_sym_while] = ACTIONS(508), - [anon_sym_do] = ACTIONS(508), - [anon_sym_try] = ACTIONS(508), - [anon_sym_break] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(508), - [anon_sym_debugger] = ACTIONS(508), - [anon_sym_return] = ACTIONS(508), - [anon_sym_throw] = ACTIONS(508), - [anon_sym_SEMI] = ACTIONS(506), - [anon_sym_case] = ACTIONS(508), - [anon_sym_yield] = ACTIONS(508), - [anon_sym_EQ] = ACTIONS(514), - [anon_sym_LBRACK] = ACTIONS(506), - [sym_glimmer_opening_tag] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(508), - [anon_sym_GT] = ACTIONS(510), - [anon_sym_DOT] = ACTIONS(510), - [anon_sym_DQUOTE] = ACTIONS(506), - [anon_sym_SQUOTE] = ACTIONS(506), - [anon_sym_class] = ACTIONS(508), - [anon_sym_async] = ACTIONS(508), - [anon_sym_function] = ACTIONS(508), - [sym_optional_chain] = ACTIONS(512), - [anon_sym_new] = ACTIONS(508), - [anon_sym_AMP_AMP] = ACTIONS(512), - [anon_sym_PIPE_PIPE] = ACTIONS(512), - [anon_sym_GT_GT] = ACTIONS(510), - [anon_sym_GT_GT_GT] = ACTIONS(512), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(510), - [anon_sym_CARET] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(510), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_STAR_STAR] = ACTIONS(512), - [anon_sym_LT_EQ] = ACTIONS(512), - [anon_sym_EQ_EQ] = ACTIONS(510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(512), - [anon_sym_BANG_EQ] = ACTIONS(510), - [anon_sym_BANG_EQ_EQ] = ACTIONS(512), - [anon_sym_GT_EQ] = ACTIONS(512), - [anon_sym_QMARK_QMARK] = ACTIONS(512), - [anon_sym_instanceof] = ACTIONS(510), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_TILDE] = ACTIONS(506), - [anon_sym_typeof] = ACTIONS(508), - [anon_sym_void] = ACTIONS(508), - [anon_sym_delete] = ACTIONS(508), - [anon_sym_PLUS_PLUS] = ACTIONS(506), - [anon_sym_DASH_DASH] = ACTIONS(506), + [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_with] = 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_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_EQ] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(508), + [sym_glimmer_opening_tag] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(510), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_DOT] = ACTIONS(512), + [anon_sym_DQUOTE] = ACTIONS(508), + [anon_sym_SQUOTE] = ACTIONS(508), + [anon_sym_class] = ACTIONS(510), + [anon_sym_async] = ACTIONS(510), + [anon_sym_function] = ACTIONS(510), + [sym_optional_chain] = ACTIONS(514), + [anon_sym_new] = ACTIONS(510), + [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_SLASH] = 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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(506), - [sym_number] = ACTIONS(506), - [sym_private_property_identifier] = ACTIONS(506), - [sym_this] = ACTIONS(508), - [sym_super] = ACTIONS(508), - [sym_true] = ACTIONS(508), - [sym_false] = ACTIONS(508), - [sym_null] = ACTIONS(508), - [sym_undefined] = ACTIONS(508), - [anon_sym_AT] = ACTIONS(506), - [anon_sym_static] = ACTIONS(508), - [anon_sym_get] = ACTIONS(508), - [anon_sym_set] = ACTIONS(508), - [sym__automatic_semicolon] = ACTIONS(516), - [sym__ternary_qmark] = ACTIONS(512), + [anon_sym_BQUOTE] = ACTIONS(508), + [sym_number] = ACTIONS(508), + [sym_private_property_identifier] = 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(518), + [sym__ternary_qmark] = ACTIONS(514), [sym_html_comment] = ACTIONS(5), }, [52] = { - [ts_builtin_sym_end] = ACTIONS(518), - [sym_identifier] = ACTIONS(520), - [anon_sym_export] = ACTIONS(520), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_default] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(518), - [anon_sym_COMMA] = ACTIONS(524), - [anon_sym_RBRACE] = ACTIONS(518), - [anon_sym_import] = ACTIONS(520), - [anon_sym_with] = 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(522), - [anon_sym_while] = ACTIONS(520), - [anon_sym_do] = ACTIONS(520), - [anon_sym_try] = 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), - [sym_glimmer_opening_tag] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(520), - [anon_sym_GT] = ACTIONS(522), - [anon_sym_DOT] = ACTIONS(522), - [anon_sym_DQUOTE] = ACTIONS(518), - [anon_sym_SQUOTE] = ACTIONS(518), - [anon_sym_class] = ACTIONS(520), - [anon_sym_async] = ACTIONS(520), - [anon_sym_function] = ACTIONS(520), - [sym_optional_chain] = ACTIONS(524), - [anon_sym_new] = ACTIONS(520), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_GT_GT] = ACTIONS(522), - [anon_sym_GT_GT_GT] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(522), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(522), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_LT_EQ] = ACTIONS(524), - [anon_sym_EQ_EQ] = ACTIONS(522), - [anon_sym_EQ_EQ_EQ] = ACTIONS(524), - [anon_sym_BANG_EQ] = ACTIONS(522), - [anon_sym_BANG_EQ_EQ] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(524), - [anon_sym_QMARK_QMARK] = ACTIONS(524), - [anon_sym_instanceof] = ACTIONS(522), - [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), + [ts_builtin_sym_end] = ACTIONS(520), + [sym_identifier] = ACTIONS(522), + [anon_sym_export] = ACTIONS(522), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_default] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(520), + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_RBRACE] = ACTIONS(520), + [anon_sym_import] = ACTIONS(522), + [anon_sym_with] = ACTIONS(522), + [anon_sym_var] = ACTIONS(522), + [anon_sym_let] = ACTIONS(522), + [anon_sym_const] = ACTIONS(522), + [anon_sym_else] = ACTIONS(522), + [anon_sym_if] = ACTIONS(522), + [anon_sym_switch] = ACTIONS(522), + [anon_sym_for] = ACTIONS(522), + [anon_sym_LPAREN] = ACTIONS(520), + [anon_sym_await] = ACTIONS(522), + [anon_sym_in] = ACTIONS(524), + [anon_sym_while] = ACTIONS(522), + [anon_sym_do] = ACTIONS(522), + [anon_sym_try] = ACTIONS(522), + [anon_sym_break] = ACTIONS(522), + [anon_sym_continue] = ACTIONS(522), + [anon_sym_debugger] = ACTIONS(522), + [anon_sym_return] = ACTIONS(522), + [anon_sym_throw] = ACTIONS(522), + [anon_sym_SEMI] = ACTIONS(520), + [anon_sym_case] = ACTIONS(522), + [anon_sym_yield] = ACTIONS(522), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_glimmer_opening_tag] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(522), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(524), + [anon_sym_DQUOTE] = ACTIONS(520), + [anon_sym_SQUOTE] = ACTIONS(520), + [anon_sym_class] = ACTIONS(522), + [anon_sym_async] = ACTIONS(522), + [anon_sym_function] = ACTIONS(522), + [sym_optional_chain] = ACTIONS(526), + [anon_sym_new] = ACTIONS(522), + [anon_sym_AMP_AMP] = ACTIONS(526), + [anon_sym_PIPE_PIPE] = ACTIONS(526), + [anon_sym_GT_GT] = ACTIONS(524), + [anon_sym_GT_GT_GT] = ACTIONS(526), + [anon_sym_LT_LT] = ACTIONS(526), + [anon_sym_AMP] = ACTIONS(524), + [anon_sym_CARET] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(524), + [anon_sym_PLUS] = ACTIONS(522), + [anon_sym_DASH] = ACTIONS(522), + [anon_sym_SLASH] = ACTIONS(522), + [anon_sym_PERCENT] = ACTIONS(526), + [anon_sym_STAR_STAR] = ACTIONS(526), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_EQ_EQ] = ACTIONS(524), + [anon_sym_EQ_EQ_EQ] = ACTIONS(526), + [anon_sym_BANG_EQ] = ACTIONS(524), + [anon_sym_BANG_EQ_EQ] = ACTIONS(526), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_QMARK_QMARK] = ACTIONS(526), + [anon_sym_instanceof] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(520), + [anon_sym_typeof] = ACTIONS(522), + [anon_sym_void] = ACTIONS(522), + [anon_sym_delete] = ACTIONS(522), + [anon_sym_PLUS_PLUS] = ACTIONS(520), + [anon_sym_DASH_DASH] = ACTIONS(520), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(518), - [sym_number] = ACTIONS(518), - [sym_private_property_identifier] = 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(526), - [sym__ternary_qmark] = ACTIONS(524), + [anon_sym_BQUOTE] = ACTIONS(520), + [sym_number] = ACTIONS(520), + [sym_private_property_identifier] = ACTIONS(520), + [sym_this] = ACTIONS(522), + [sym_super] = ACTIONS(522), + [sym_true] = ACTIONS(522), + [sym_false] = ACTIONS(522), + [sym_null] = ACTIONS(522), + [sym_undefined] = ACTIONS(522), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), + [sym__automatic_semicolon] = ACTIONS(528), + [sym__ternary_qmark] = ACTIONS(526), [sym_html_comment] = ACTIONS(5), }, [53] = { - [ts_builtin_sym_end] = ACTIONS(528), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1164), + [sym_assignment_pattern] = STATE(1297), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1164), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(458), + [sym_subscript_expression] = STATE(458), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1164), + [sym_spread_element] = STATE(1320), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [sym_pattern] = STATE(1241), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_array_repeat1] = STATE(1321), + [aux_sym_array_pattern_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(530), - [anon_sym_export] = ACTIONS(530), - [anon_sym_STAR] = ACTIONS(532), - [anon_sym_default] = ACTIONS(530), - [anon_sym_LBRACE] = ACTIONS(528), + [anon_sym_export] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_COMMA] = ACTIONS(534), - [anon_sym_RBRACE] = ACTIONS(528), - [anon_sym_import] = ACTIONS(530), - [anon_sym_with] = ACTIONS(530), - [anon_sym_var] = ACTIONS(530), - [anon_sym_let] = ACTIONS(530), - [anon_sym_const] = ACTIONS(530), - [anon_sym_else] = ACTIONS(530), - [anon_sym_if] = ACTIONS(530), - [anon_sym_switch] = ACTIONS(530), - [anon_sym_for] = ACTIONS(530), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_await] = ACTIONS(530), - [anon_sym_in] = ACTIONS(532), - [anon_sym_while] = ACTIONS(530), - [anon_sym_do] = ACTIONS(530), - [anon_sym_try] = ACTIONS(530), - [anon_sym_break] = ACTIONS(530), - [anon_sym_continue] = ACTIONS(530), - [anon_sym_debugger] = ACTIONS(530), - [anon_sym_return] = ACTIONS(530), - [anon_sym_throw] = ACTIONS(530), - [anon_sym_SEMI] = ACTIONS(528), - [anon_sym_case] = ACTIONS(530), - [anon_sym_yield] = ACTIONS(530), - [anon_sym_LBRACK] = ACTIONS(528), - [sym_glimmer_opening_tag] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(532), - [anon_sym_DOT] = ACTIONS(532), - [anon_sym_DQUOTE] = ACTIONS(528), - [anon_sym_SQUOTE] = ACTIONS(528), - [anon_sym_class] = ACTIONS(530), - [anon_sym_async] = ACTIONS(530), - [anon_sym_function] = ACTIONS(530), - [sym_optional_chain] = ACTIONS(534), - [anon_sym_new] = ACTIONS(530), - [anon_sym_AMP_AMP] = ACTIONS(534), - [anon_sym_PIPE_PIPE] = ACTIONS(534), - [anon_sym_GT_GT] = ACTIONS(532), - [anon_sym_GT_GT_GT] = ACTIONS(534), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_CARET] = ACTIONS(534), - [anon_sym_PIPE] = ACTIONS(532), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_SLASH] = ACTIONS(530), - [anon_sym_PERCENT] = ACTIONS(534), - [anon_sym_STAR_STAR] = ACTIONS(534), - [anon_sym_LT_EQ] = ACTIONS(534), - [anon_sym_EQ_EQ] = ACTIONS(532), - [anon_sym_EQ_EQ_EQ] = ACTIONS(534), - [anon_sym_BANG_EQ] = ACTIONS(532), - [anon_sym_BANG_EQ_EQ] = ACTIONS(534), - [anon_sym_GT_EQ] = ACTIONS(534), - [anon_sym_QMARK_QMARK] = ACTIONS(534), - [anon_sym_instanceof] = ACTIONS(532), - [anon_sym_BANG] = ACTIONS(530), - [anon_sym_TILDE] = ACTIONS(528), - [anon_sym_typeof] = ACTIONS(530), - [anon_sym_void] = ACTIONS(530), - [anon_sym_delete] = ACTIONS(530), - [anon_sym_PLUS_PLUS] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(528), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(528), - [sym_number] = ACTIONS(528), - [sym_private_property_identifier] = ACTIONS(528), - [sym_this] = ACTIONS(530), - [sym_super] = ACTIONS(530), - [sym_true] = ACTIONS(530), - [sym_false] = ACTIONS(530), - [sym_null] = ACTIONS(530), - [sym_undefined] = ACTIONS(530), - [anon_sym_AT] = ACTIONS(528), - [anon_sym_static] = ACTIONS(530), - [anon_sym_get] = ACTIONS(530), - [anon_sym_set] = ACTIONS(530), - [sym__automatic_semicolon] = ACTIONS(536), - [sym__ternary_qmark] = ACTIONS(534), - [sym_html_comment] = ACTIONS(5), - }, - [54] = { - [ts_builtin_sym_end] = ACTIONS(538), - [sym_identifier] = ACTIONS(540), - [anon_sym_export] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(542), - [anon_sym_default] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_RBRACE] = ACTIONS(538), - [anon_sym_import] = ACTIONS(540), - [anon_sym_with] = ACTIONS(540), - [anon_sym_var] = ACTIONS(540), - [anon_sym_let] = ACTIONS(540), - [anon_sym_const] = ACTIONS(540), - [anon_sym_else] = ACTIONS(540), - [anon_sym_if] = ACTIONS(540), - [anon_sym_switch] = ACTIONS(540), - [anon_sym_for] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(538), - [anon_sym_await] = ACTIONS(540), - [anon_sym_in] = ACTIONS(542), - [anon_sym_while] = ACTIONS(540), - [anon_sym_do] = ACTIONS(540), - [anon_sym_try] = ACTIONS(540), - [anon_sym_break] = ACTIONS(540), - [anon_sym_continue] = ACTIONS(540), - [anon_sym_debugger] = ACTIONS(540), - [anon_sym_return] = ACTIONS(540), - [anon_sym_throw] = ACTIONS(540), - [anon_sym_SEMI] = ACTIONS(538), - [anon_sym_case] = ACTIONS(540), - [anon_sym_yield] = ACTIONS(540), - [anon_sym_LBRACK] = ACTIONS(538), - [sym_glimmer_opening_tag] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_DOT] = ACTIONS(542), - [anon_sym_DQUOTE] = ACTIONS(538), - [anon_sym_SQUOTE] = ACTIONS(538), - [anon_sym_class] = ACTIONS(540), - [anon_sym_async] = ACTIONS(540), - [anon_sym_function] = ACTIONS(540), - [sym_optional_chain] = ACTIONS(544), - [anon_sym_new] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_GT_GT_GT] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(542), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(542), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(540), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_STAR_STAR] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(544), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_EQ_EQ_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ_EQ] = ACTIONS(544), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_QMARK_QMARK] = ACTIONS(544), - [anon_sym_instanceof] = ACTIONS(542), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(538), - [anon_sym_typeof] = ACTIONS(540), - [anon_sym_void] = ACTIONS(540), - [anon_sym_delete] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(538), - [anon_sym_DASH_DASH] = ACTIONS(538), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(538), - [sym_number] = ACTIONS(538), - [sym_private_property_identifier] = ACTIONS(538), - [sym_this] = ACTIONS(540), - [sym_super] = ACTIONS(540), - [sym_true] = ACTIONS(540), - [sym_false] = ACTIONS(540), - [sym_null] = ACTIONS(540), - [sym_undefined] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(538), - [anon_sym_static] = ACTIONS(540), - [anon_sym_get] = ACTIONS(540), - [anon_sym_set] = ACTIONS(540), - [sym__automatic_semicolon] = ACTIONS(546), - [sym__ternary_qmark] = ACTIONS(544), - [sym_html_comment] = ACTIONS(5), - }, - [55] = { - [ts_builtin_sym_end] = ACTIONS(548), - [sym_identifier] = ACTIONS(550), - [anon_sym_export] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(552), - [anon_sym_default] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(554), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_import] = ACTIONS(550), - [anon_sym_with] = ACTIONS(550), - [anon_sym_var] = ACTIONS(550), - [anon_sym_let] = ACTIONS(550), - [anon_sym_const] = ACTIONS(550), - [anon_sym_else] = ACTIONS(550), - [anon_sym_if] = ACTIONS(550), - [anon_sym_switch] = ACTIONS(550), - [anon_sym_for] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_await] = ACTIONS(550), - [anon_sym_in] = ACTIONS(552), - [anon_sym_while] = ACTIONS(550), - [anon_sym_do] = ACTIONS(550), - [anon_sym_try] = ACTIONS(550), - [anon_sym_break] = ACTIONS(550), - [anon_sym_continue] = ACTIONS(550), - [anon_sym_debugger] = ACTIONS(550), - [anon_sym_return] = ACTIONS(550), - [anon_sym_throw] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_case] = ACTIONS(550), - [anon_sym_yield] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(548), - [sym_glimmer_opening_tag] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(552), - [anon_sym_DOT] = ACTIONS(552), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(548), - [anon_sym_class] = ACTIONS(550), - [anon_sym_async] = ACTIONS(550), - [anon_sym_function] = ACTIONS(550), - [sym_optional_chain] = ACTIONS(554), - [anon_sym_new] = ACTIONS(550), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(552), - [anon_sym_GT_GT_GT] = ACTIONS(554), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_AMP] = ACTIONS(552), - [anon_sym_CARET] = ACTIONS(554), - [anon_sym_PIPE] = ACTIONS(552), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_SLASH] = ACTIONS(550), - [anon_sym_PERCENT] = ACTIONS(554), - [anon_sym_STAR_STAR] = ACTIONS(554), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_EQ_EQ] = ACTIONS(552), - [anon_sym_EQ_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(552), - [anon_sym_BANG_EQ_EQ] = ACTIONS(554), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_QMARK_QMARK] = ACTIONS(554), - [anon_sym_instanceof] = ACTIONS(552), - [anon_sym_BANG] = ACTIONS(550), - [anon_sym_TILDE] = ACTIONS(548), - [anon_sym_typeof] = ACTIONS(550), - [anon_sym_void] = ACTIONS(550), - [anon_sym_delete] = ACTIONS(550), - [anon_sym_PLUS_PLUS] = ACTIONS(548), - [anon_sym_DASH_DASH] = ACTIONS(548), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(548), - [sym_number] = ACTIONS(548), - [sym_private_property_identifier] = ACTIONS(548), - [sym_this] = ACTIONS(550), - [sym_super] = ACTIONS(550), - [sym_true] = ACTIONS(550), - [sym_false] = ACTIONS(550), - [sym_null] = ACTIONS(550), - [sym_undefined] = ACTIONS(550), - [anon_sym_AT] = ACTIONS(548), - [anon_sym_static] = ACTIONS(550), - [anon_sym_get] = ACTIONS(550), - [anon_sym_set] = ACTIONS(550), - [sym__automatic_semicolon] = ACTIONS(556), - [sym__ternary_qmark] = ACTIONS(554), - [sym_html_comment] = ACTIONS(5), - }, - [56] = { - [ts_builtin_sym_end] = ACTIONS(558), - [sym_identifier] = ACTIONS(560), - [anon_sym_export] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_default] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(558), - [anon_sym_COMMA] = ACTIONS(564), - [anon_sym_RBRACE] = ACTIONS(558), - [anon_sym_import] = ACTIONS(560), - [anon_sym_with] = ACTIONS(560), - [anon_sym_var] = ACTIONS(560), - [anon_sym_let] = ACTIONS(560), - [anon_sym_const] = ACTIONS(560), - [anon_sym_else] = ACTIONS(560), - [anon_sym_if] = ACTIONS(560), - [anon_sym_switch] = ACTIONS(560), - [anon_sym_for] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(558), - [anon_sym_await] = ACTIONS(560), - [anon_sym_in] = ACTIONS(562), - [anon_sym_while] = ACTIONS(560), - [anon_sym_do] = ACTIONS(560), - [anon_sym_try] = ACTIONS(560), - [anon_sym_break] = ACTIONS(560), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_debugger] = ACTIONS(560), - [anon_sym_return] = ACTIONS(560), - [anon_sym_throw] = ACTIONS(560), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_case] = ACTIONS(560), - [anon_sym_yield] = ACTIONS(560), - [anon_sym_LBRACK] = ACTIONS(558), - [sym_glimmer_opening_tag] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_DOT] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(558), - [anon_sym_SQUOTE] = ACTIONS(558), - [anon_sym_class] = ACTIONS(560), - [anon_sym_async] = ACTIONS(560), - [anon_sym_function] = ACTIONS(560), - [sym_optional_chain] = ACTIONS(564), - [anon_sym_new] = ACTIONS(560), - [anon_sym_AMP_AMP] = ACTIONS(564), - [anon_sym_PIPE_PIPE] = ACTIONS(564), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_GT_GT_GT] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(560), - [anon_sym_DASH] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(560), - [anon_sym_PERCENT] = ACTIONS(564), - [anon_sym_STAR_STAR] = ACTIONS(564), - [anon_sym_LT_EQ] = ACTIONS(564), - [anon_sym_EQ_EQ] = ACTIONS(562), - [anon_sym_EQ_EQ_EQ] = ACTIONS(564), - [anon_sym_BANG_EQ] = ACTIONS(562), - [anon_sym_BANG_EQ_EQ] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(564), - [anon_sym_QMARK_QMARK] = ACTIONS(564), - [anon_sym_instanceof] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_TILDE] = ACTIONS(558), - [anon_sym_typeof] = ACTIONS(560), - [anon_sym_void] = ACTIONS(560), - [anon_sym_delete] = ACTIONS(560), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(558), - [sym_number] = ACTIONS(558), - [sym_private_property_identifier] = ACTIONS(558), - [sym_this] = ACTIONS(560), - [sym_super] = ACTIONS(560), - [sym_true] = ACTIONS(560), - [sym_false] = ACTIONS(560), - [sym_null] = ACTIONS(560), - [sym_undefined] = ACTIONS(560), - [anon_sym_AT] = ACTIONS(558), - [anon_sym_static] = ACTIONS(560), - [anon_sym_get] = ACTIONS(560), - [anon_sym_set] = ACTIONS(560), - [sym__automatic_semicolon] = ACTIONS(566), - [sym__ternary_qmark] = ACTIONS(564), - [sym_html_comment] = ACTIONS(5), - }, - [57] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(714), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1139), - [sym_assignment_pattern] = STATE(1332), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1139), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(459), - [sym_subscript_expression] = STATE(459), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1139), - [sym_spread_element] = STATE(1347), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [sym_pattern] = STATE(1245), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [aux_sym_array_repeat1] = STATE(1334), - [aux_sym_array_pattern_repeat1] = STATE(1273), - [sym_identifier] = ACTIONS(568), - [anon_sym_export] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_COMMA] = ACTIONS(572), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(570), + [anon_sym_let] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(464), - [anon_sym_RBRACK] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_RBRACK] = ACTIONS(536), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(576), + [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -15496,344 +15163,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(578), + [sym_undefined] = ACTIONS(540), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(570), - [anon_sym_get] = ACTIONS(570), - [anon_sym_set] = ACTIONS(570), - [sym_html_comment] = ACTIONS(5), - }, - [58] = { - [ts_builtin_sym_end] = ACTIONS(580), - [sym_identifier] = ACTIONS(582), - [anon_sym_export] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_default] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_import] = ACTIONS(582), - [anon_sym_with] = ACTIONS(582), - [anon_sym_var] = ACTIONS(582), - [anon_sym_let] = ACTIONS(582), - [anon_sym_const] = ACTIONS(582), - [anon_sym_else] = ACTIONS(582), - [anon_sym_if] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(582), - [anon_sym_for] = ACTIONS(582), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_await] = ACTIONS(582), - [anon_sym_in] = ACTIONS(584), - [anon_sym_while] = ACTIONS(582), - [anon_sym_do] = ACTIONS(582), - [anon_sym_try] = ACTIONS(582), - [anon_sym_break] = ACTIONS(582), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_debugger] = ACTIONS(582), - [anon_sym_return] = ACTIONS(582), - [anon_sym_throw] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_case] = ACTIONS(582), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(580), - [sym_glimmer_opening_tag] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_DOT] = ACTIONS(584), - [anon_sym_DQUOTE] = ACTIONS(580), - [anon_sym_SQUOTE] = ACTIONS(580), - [anon_sym_class] = ACTIONS(582), - [anon_sym_async] = ACTIONS(582), - [anon_sym_function] = ACTIONS(582), - [sym_optional_chain] = ACTIONS(586), - [anon_sym_new] = ACTIONS(582), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(584), - [anon_sym_GT_GT_GT] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_STAR_STAR] = ACTIONS(586), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(584), - [anon_sym_EQ_EQ_EQ] = ACTIONS(586), - [anon_sym_BANG_EQ] = ACTIONS(584), - [anon_sym_BANG_EQ_EQ] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_QMARK_QMARK] = ACTIONS(586), - [anon_sym_instanceof] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(582), - [anon_sym_TILDE] = ACTIONS(580), - [anon_sym_typeof] = ACTIONS(582), - [anon_sym_void] = ACTIONS(582), - [anon_sym_delete] = ACTIONS(582), - [anon_sym_PLUS_PLUS] = ACTIONS(580), - [anon_sym_DASH_DASH] = ACTIONS(580), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(580), - [sym_number] = ACTIONS(580), - [sym_private_property_identifier] = ACTIONS(580), - [sym_this] = ACTIONS(582), - [sym_super] = ACTIONS(582), - [sym_true] = ACTIONS(582), - [sym_false] = ACTIONS(582), - [sym_null] = ACTIONS(582), - [sym_undefined] = ACTIONS(582), - [anon_sym_AT] = ACTIONS(580), - [anon_sym_static] = ACTIONS(582), - [anon_sym_get] = ACTIONS(582), - [anon_sym_set] = ACTIONS(582), - [sym__automatic_semicolon] = ACTIONS(588), - [sym__ternary_qmark] = ACTIONS(586), - [sym_html_comment] = ACTIONS(5), - }, - [59] = { - [ts_builtin_sym_end] = ACTIONS(590), - [sym_identifier] = ACTIONS(592), - [anon_sym_export] = ACTIONS(592), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_default] = ACTIONS(592), - [anon_sym_LBRACE] = ACTIONS(590), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_RBRACE] = ACTIONS(590), - [anon_sym_import] = ACTIONS(592), - [anon_sym_with] = ACTIONS(592), - [anon_sym_var] = ACTIONS(592), - [anon_sym_let] = ACTIONS(592), - [anon_sym_const] = ACTIONS(592), - [anon_sym_else] = ACTIONS(592), - [anon_sym_if] = ACTIONS(592), - [anon_sym_switch] = ACTIONS(592), - [anon_sym_for] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(590), - [anon_sym_await] = ACTIONS(592), - [anon_sym_in] = ACTIONS(594), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(592), - [anon_sym_try] = ACTIONS(592), - [anon_sym_break] = ACTIONS(592), - [anon_sym_continue] = ACTIONS(592), - [anon_sym_debugger] = ACTIONS(592), - [anon_sym_return] = ACTIONS(592), - [anon_sym_throw] = ACTIONS(592), - [anon_sym_SEMI] = ACTIONS(590), - [anon_sym_case] = ACTIONS(592), - [anon_sym_yield] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(590), - [sym_glimmer_opening_tag] = ACTIONS(590), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(594), - [anon_sym_DOT] = ACTIONS(594), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(592), - [sym_optional_chain] = ACTIONS(596), - [anon_sym_new] = ACTIONS(592), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_GT_GT] = ACTIONS(594), - [anon_sym_GT_GT_GT] = ACTIONS(596), - [anon_sym_LT_LT] = ACTIONS(596), - [anon_sym_AMP] = ACTIONS(594), - [anon_sym_CARET] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_SLASH] = ACTIONS(592), - [anon_sym_PERCENT] = ACTIONS(596), - [anon_sym_STAR_STAR] = ACTIONS(596), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_EQ_EQ] = ACTIONS(594), - [anon_sym_EQ_EQ_EQ] = ACTIONS(596), - [anon_sym_BANG_EQ] = ACTIONS(594), - [anon_sym_BANG_EQ_EQ] = ACTIONS(596), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_QMARK_QMARK] = ACTIONS(596), - [anon_sym_instanceof] = ACTIONS(594), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(590), - [anon_sym_typeof] = ACTIONS(592), - [anon_sym_void] = ACTIONS(592), - [anon_sym_delete] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(590), - [sym_number] = ACTIONS(590), - [sym_private_property_identifier] = ACTIONS(590), - [sym_this] = ACTIONS(592), - [sym_super] = ACTIONS(592), - [sym_true] = ACTIONS(592), - [sym_false] = ACTIONS(592), - [sym_null] = ACTIONS(592), - [sym_undefined] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(590), - [anon_sym_static] = ACTIONS(592), - [anon_sym_get] = ACTIONS(592), - [anon_sym_set] = ACTIONS(592), - [sym__automatic_semicolon] = ACTIONS(598), - [sym__ternary_qmark] = ACTIONS(596), + [anon_sym_static] = ACTIONS(532), + [anon_sym_get] = ACTIONS(532), + [anon_sym_set] = ACTIONS(532), [sym_html_comment] = ACTIONS(5), }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(506), - [sym_identifier] = ACTIONS(508), - [anon_sym_export] = ACTIONS(508), - [anon_sym_STAR] = ACTIONS(508), - [anon_sym_default] = ACTIONS(508), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_COMMA] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_import] = ACTIONS(508), - [anon_sym_with] = ACTIONS(508), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(508), - [anon_sym_const] = ACTIONS(508), - [anon_sym_else] = ACTIONS(508), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_for] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(506), - [anon_sym_await] = ACTIONS(508), - [anon_sym_in] = ACTIONS(508), - [anon_sym_while] = ACTIONS(508), - [anon_sym_do] = ACTIONS(508), - [anon_sym_try] = ACTIONS(508), - [anon_sym_break] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(508), - [anon_sym_debugger] = ACTIONS(508), - [anon_sym_return] = ACTIONS(508), - [anon_sym_throw] = ACTIONS(508), - [anon_sym_SEMI] = ACTIONS(506), - [anon_sym_case] = ACTIONS(508), - [anon_sym_yield] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(506), - [sym_glimmer_opening_tag] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(508), - [anon_sym_GT] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(508), - [anon_sym_DQUOTE] = ACTIONS(506), - [anon_sym_SQUOTE] = ACTIONS(506), - [anon_sym_class] = ACTIONS(508), - [anon_sym_async] = ACTIONS(508), - [anon_sym_function] = ACTIONS(508), - [sym_optional_chain] = ACTIONS(506), - [anon_sym_new] = ACTIONS(508), - [anon_sym_AMP_AMP] = ACTIONS(506), - [anon_sym_PIPE_PIPE] = ACTIONS(506), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_GT_GT_GT] = ACTIONS(506), - [anon_sym_LT_LT] = ACTIONS(506), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_CARET] = ACTIONS(506), - [anon_sym_PIPE] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_PERCENT] = ACTIONS(506), - [anon_sym_STAR_STAR] = ACTIONS(506), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_EQ_EQ] = ACTIONS(508), - [anon_sym_EQ_EQ_EQ] = ACTIONS(506), - [anon_sym_BANG_EQ] = ACTIONS(508), - [anon_sym_BANG_EQ_EQ] = ACTIONS(506), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_QMARK_QMARK] = ACTIONS(506), - [anon_sym_instanceof] = ACTIONS(508), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_TILDE] = ACTIONS(506), - [anon_sym_typeof] = ACTIONS(508), - [anon_sym_void] = ACTIONS(508), - [anon_sym_delete] = ACTIONS(508), - [anon_sym_PLUS_PLUS] = ACTIONS(506), - [anon_sym_DASH_DASH] = ACTIONS(506), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(506), - [sym_number] = ACTIONS(506), - [sym_private_property_identifier] = ACTIONS(506), - [sym_this] = ACTIONS(508), - [sym_super] = ACTIONS(508), - [sym_true] = ACTIONS(508), - [sym_false] = ACTIONS(508), - [sym_null] = ACTIONS(508), - [sym_undefined] = ACTIONS(508), - [anon_sym_AT] = ACTIONS(506), - [anon_sym_static] = ACTIONS(508), - [anon_sym_get] = ACTIONS(508), - [anon_sym_set] = ACTIONS(508), - [sym__automatic_semicolon] = ACTIONS(600), - [sym__ternary_qmark] = ACTIONS(506), - [sym_html_comment] = ACTIONS(5), - }, - [61] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(679), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1139), - [sym_assignment_pattern] = STATE(1332), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1139), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(459), - [sym_subscript_expression] = STATE(459), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1139), - [sym_spread_element] = STATE(1292), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [sym_pattern] = STATE(1245), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [aux_sym_array_repeat1] = STATE(1295), - [aux_sym_array_pattern_repeat1] = STATE(1273), - [sym_identifier] = ACTIONS(568), - [anon_sym_export] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_COMMA] = ACTIONS(572), + [54] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(677), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1164), + [sym_assignment_pattern] = STATE(1297), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1164), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(458), + [sym_subscript_expression] = STATE(458), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1164), + [sym_spread_element] = STATE(1289), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [sym_pattern] = STATE(1241), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_array_repeat1] = STATE(1280), + [aux_sym_array_pattern_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(530), + [anon_sym_export] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_COMMA] = ACTIONS(534), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(570), + [anon_sym_let] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(464), - [anon_sym_RBRACK] = ACTIONS(602), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_RBRACK] = ACTIONS(542), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(576), + [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -15856,74 +15253,524 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(578), + [sym_undefined] = ACTIONS(540), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(570), - [anon_sym_get] = ACTIONS(570), - [anon_sym_set] = ACTIONS(570), + [anon_sym_static] = ACTIONS(532), + [anon_sym_get] = ACTIONS(532), + [anon_sym_set] = ACTIONS(532), [sym_html_comment] = ACTIONS(5), }, - [62] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(679), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1139), - [sym_assignment_pattern] = STATE(1332), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1139), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(459), - [sym_subscript_expression] = STATE(459), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1139), - [sym_spread_element] = STATE(1292), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [sym_pattern] = STATE(1245), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [aux_sym_array_repeat1] = STATE(1295), - [aux_sym_array_pattern_repeat1] = STATE(1273), - [sym_identifier] = ACTIONS(568), - [anon_sym_export] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_COMMA] = ACTIONS(572), + [55] = { + [ts_builtin_sym_end] = ACTIONS(544), + [sym_identifier] = ACTIONS(546), + [anon_sym_export] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(548), + [anon_sym_default] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(544), + [anon_sym_COMMA] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_import] = ACTIONS(546), + [anon_sym_with] = ACTIONS(546), + [anon_sym_var] = ACTIONS(546), + [anon_sym_let] = ACTIONS(546), + [anon_sym_const] = ACTIONS(546), + [anon_sym_else] = ACTIONS(546), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(546), + [anon_sym_for] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(544), + [anon_sym_await] = ACTIONS(546), + [anon_sym_in] = ACTIONS(548), + [anon_sym_while] = ACTIONS(546), + [anon_sym_do] = ACTIONS(546), + [anon_sym_try] = ACTIONS(546), + [anon_sym_break] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(546), + [anon_sym_debugger] = ACTIONS(546), + [anon_sym_return] = ACTIONS(546), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(544), + [anon_sym_case] = ACTIONS(546), + [anon_sym_yield] = ACTIONS(546), + [anon_sym_LBRACK] = ACTIONS(544), + [sym_glimmer_opening_tag] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(548), + [anon_sym_DOT] = ACTIONS(548), + [anon_sym_DQUOTE] = ACTIONS(544), + [anon_sym_SQUOTE] = ACTIONS(544), + [anon_sym_class] = ACTIONS(546), + [anon_sym_async] = ACTIONS(546), + [anon_sym_function] = ACTIONS(546), + [sym_optional_chain] = ACTIONS(550), + [anon_sym_new] = ACTIONS(546), + [anon_sym_AMP_AMP] = ACTIONS(550), + [anon_sym_PIPE_PIPE] = ACTIONS(550), + [anon_sym_GT_GT] = ACTIONS(548), + [anon_sym_GT_GT_GT] = ACTIONS(550), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_AMP] = ACTIONS(548), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(548), + [anon_sym_PLUS] = ACTIONS(546), + [anon_sym_DASH] = ACTIONS(546), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_PERCENT] = ACTIONS(550), + [anon_sym_STAR_STAR] = ACTIONS(550), + [anon_sym_LT_EQ] = ACTIONS(550), + [anon_sym_EQ_EQ] = ACTIONS(548), + [anon_sym_EQ_EQ_EQ] = ACTIONS(550), + [anon_sym_BANG_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ_EQ] = ACTIONS(550), + [anon_sym_GT_EQ] = ACTIONS(550), + [anon_sym_QMARK_QMARK] = ACTIONS(550), + [anon_sym_instanceof] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_TILDE] = ACTIONS(544), + [anon_sym_typeof] = ACTIONS(546), + [anon_sym_void] = ACTIONS(546), + [anon_sym_delete] = ACTIONS(546), + [anon_sym_PLUS_PLUS] = ACTIONS(544), + [anon_sym_DASH_DASH] = ACTIONS(544), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(544), + [sym_number] = ACTIONS(544), + [sym_private_property_identifier] = ACTIONS(544), + [sym_this] = ACTIONS(546), + [sym_super] = ACTIONS(546), + [sym_true] = ACTIONS(546), + [sym_false] = ACTIONS(546), + [sym_null] = ACTIONS(546), + [sym_undefined] = ACTIONS(546), + [anon_sym_AT] = ACTIONS(544), + [anon_sym_static] = ACTIONS(546), + [anon_sym_get] = ACTIONS(546), + [anon_sym_set] = ACTIONS(546), + [sym__automatic_semicolon] = ACTIONS(552), + [sym__ternary_qmark] = ACTIONS(550), + [sym_html_comment] = ACTIONS(5), + }, + [56] = { + [ts_builtin_sym_end] = ACTIONS(554), + [sym_identifier] = ACTIONS(556), + [anon_sym_export] = ACTIONS(556), + [anon_sym_STAR] = ACTIONS(558), + [anon_sym_default] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(560), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_import] = ACTIONS(556), + [anon_sym_with] = ACTIONS(556), + [anon_sym_var] = ACTIONS(556), + [anon_sym_let] = ACTIONS(556), + [anon_sym_const] = ACTIONS(556), + [anon_sym_else] = ACTIONS(556), + [anon_sym_if] = ACTIONS(556), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_for] = ACTIONS(556), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_await] = ACTIONS(556), + [anon_sym_in] = ACTIONS(558), + [anon_sym_while] = ACTIONS(556), + [anon_sym_do] = ACTIONS(556), + [anon_sym_try] = ACTIONS(556), + [anon_sym_break] = ACTIONS(556), + [anon_sym_continue] = ACTIONS(556), + [anon_sym_debugger] = ACTIONS(556), + [anon_sym_return] = ACTIONS(556), + [anon_sym_throw] = ACTIONS(556), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_case] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(554), + [sym_glimmer_opening_tag] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_DOT] = ACTIONS(558), + [anon_sym_DQUOTE] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(554), + [anon_sym_class] = ACTIONS(556), + [anon_sym_async] = ACTIONS(556), + [anon_sym_function] = ACTIONS(556), + [sym_optional_chain] = ACTIONS(560), + [anon_sym_new] = ACTIONS(556), + [anon_sym_AMP_AMP] = ACTIONS(560), + [anon_sym_PIPE_PIPE] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_GT_GT_GT] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_CARET] = ACTIONS(560), + [anon_sym_PIPE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_SLASH] = ACTIONS(556), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_STAR_STAR] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(560), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_EQ_EQ_EQ] = ACTIONS(560), + [anon_sym_BANG_EQ] = ACTIONS(558), + [anon_sym_BANG_EQ_EQ] = ACTIONS(560), + [anon_sym_GT_EQ] = ACTIONS(560), + [anon_sym_QMARK_QMARK] = ACTIONS(560), + [anon_sym_instanceof] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_TILDE] = ACTIONS(554), + [anon_sym_typeof] = ACTIONS(556), + [anon_sym_void] = ACTIONS(556), + [anon_sym_delete] = ACTIONS(556), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_DASH_DASH] = ACTIONS(554), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(554), + [sym_number] = ACTIONS(554), + [sym_private_property_identifier] = ACTIONS(554), + [sym_this] = ACTIONS(556), + [sym_super] = ACTIONS(556), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_null] = ACTIONS(556), + [sym_undefined] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(554), + [anon_sym_static] = ACTIONS(556), + [anon_sym_get] = ACTIONS(556), + [anon_sym_set] = ACTIONS(556), + [sym__automatic_semicolon] = ACTIONS(562), + [sym__ternary_qmark] = ACTIONS(560), + [sym_html_comment] = ACTIONS(5), + }, + [57] = { + [ts_builtin_sym_end] = ACTIONS(564), + [sym_identifier] = ACTIONS(566), + [anon_sym_export] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_default] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(564), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(564), + [anon_sym_import] = ACTIONS(566), + [anon_sym_with] = ACTIONS(566), + [anon_sym_var] = ACTIONS(566), + [anon_sym_let] = ACTIONS(566), + [anon_sym_const] = ACTIONS(566), + [anon_sym_else] = ACTIONS(566), + [anon_sym_if] = ACTIONS(566), + [anon_sym_switch] = ACTIONS(566), + [anon_sym_for] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_await] = ACTIONS(566), + [anon_sym_in] = ACTIONS(568), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(566), + [anon_sym_try] = ACTIONS(566), + [anon_sym_break] = ACTIONS(566), + [anon_sym_continue] = ACTIONS(566), + [anon_sym_debugger] = ACTIONS(566), + [anon_sym_return] = ACTIONS(566), + [anon_sym_throw] = ACTIONS(566), + [anon_sym_SEMI] = ACTIONS(564), + [anon_sym_case] = ACTIONS(566), + [anon_sym_yield] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(564), + [sym_glimmer_opening_tag] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(566), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(568), + [anon_sym_DQUOTE] = ACTIONS(564), + [anon_sym_SQUOTE] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(566), + [anon_sym_function] = ACTIONS(566), + [sym_optional_chain] = ACTIONS(570), + [anon_sym_new] = ACTIONS(566), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_GT_GT_GT] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_PLUS] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_SLASH] = ACTIONS(566), + [anon_sym_PERCENT] = ACTIONS(570), + [anon_sym_STAR_STAR] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_EQ_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_QMARK_QMARK] = ACTIONS(570), + [anon_sym_instanceof] = ACTIONS(568), + [anon_sym_BANG] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(564), + [anon_sym_typeof] = ACTIONS(566), + [anon_sym_void] = ACTIONS(566), + [anon_sym_delete] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(564), + [anon_sym_DASH_DASH] = ACTIONS(564), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(564), + [sym_number] = ACTIONS(564), + [sym_private_property_identifier] = ACTIONS(564), + [sym_this] = ACTIONS(566), + [sym_super] = ACTIONS(566), + [sym_true] = ACTIONS(566), + [sym_false] = ACTIONS(566), + [sym_null] = ACTIONS(566), + [sym_undefined] = ACTIONS(566), + [anon_sym_AT] = ACTIONS(564), + [anon_sym_static] = ACTIONS(566), + [anon_sym_get] = ACTIONS(566), + [anon_sym_set] = ACTIONS(566), + [sym__automatic_semicolon] = ACTIONS(572), + [sym__ternary_qmark] = ACTIONS(570), + [sym_html_comment] = ACTIONS(5), + }, + [58] = { + [ts_builtin_sym_end] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [anon_sym_export] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(578), + [anon_sym_default] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_COMMA] = ACTIONS(580), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_import] = ACTIONS(576), + [anon_sym_with] = ACTIONS(576), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(576), + [anon_sym_const] = ACTIONS(576), + [anon_sym_else] = ACTIONS(576), + [anon_sym_if] = ACTIONS(576), + [anon_sym_switch] = ACTIONS(576), + [anon_sym_for] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_await] = ACTIONS(576), + [anon_sym_in] = ACTIONS(578), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(576), + [anon_sym_try] = ACTIONS(576), + [anon_sym_break] = ACTIONS(576), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_debugger] = ACTIONS(576), + [anon_sym_return] = ACTIONS(576), + [anon_sym_throw] = ACTIONS(576), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym_case] = ACTIONS(576), + [anon_sym_yield] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(574), + [sym_glimmer_opening_tag] = ACTIONS(574), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(578), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_DQUOTE] = ACTIONS(574), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_class] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_function] = ACTIONS(576), + [sym_optional_chain] = ACTIONS(580), + [anon_sym_new] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(580), + [anon_sym_PIPE_PIPE] = ACTIONS(580), + [anon_sym_GT_GT] = ACTIONS(578), + [anon_sym_GT_GT_GT] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(580), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_PERCENT] = ACTIONS(580), + [anon_sym_STAR_STAR] = ACTIONS(580), + [anon_sym_LT_EQ] = ACTIONS(580), + [anon_sym_EQ_EQ] = ACTIONS(578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(580), + [anon_sym_BANG_EQ] = ACTIONS(578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(580), + [anon_sym_GT_EQ] = ACTIONS(580), + [anon_sym_QMARK_QMARK] = ACTIONS(580), + [anon_sym_instanceof] = ACTIONS(578), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(574), + [anon_sym_typeof] = ACTIONS(576), + [anon_sym_void] = ACTIONS(576), + [anon_sym_delete] = ACTIONS(576), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(574), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(574), + [sym_number] = ACTIONS(574), + [sym_private_property_identifier] = ACTIONS(574), + [sym_this] = ACTIONS(576), + [sym_super] = ACTIONS(576), + [sym_true] = ACTIONS(576), + [sym_false] = ACTIONS(576), + [sym_null] = ACTIONS(576), + [sym_undefined] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(574), + [anon_sym_static] = ACTIONS(576), + [anon_sym_get] = ACTIONS(576), + [anon_sym_set] = ACTIONS(576), + [sym__automatic_semicolon] = ACTIONS(582), + [sym__ternary_qmark] = ACTIONS(580), + [sym_html_comment] = ACTIONS(5), + }, + [59] = { + [ts_builtin_sym_end] = ACTIONS(584), + [sym_identifier] = ACTIONS(586), + [anon_sym_export] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_default] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_COMMA] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(584), + [anon_sym_import] = ACTIONS(586), + [anon_sym_with] = ACTIONS(586), + [anon_sym_var] = ACTIONS(586), + [anon_sym_let] = ACTIONS(586), + [anon_sym_const] = ACTIONS(586), + [anon_sym_else] = ACTIONS(586), + [anon_sym_if] = ACTIONS(586), + [anon_sym_switch] = ACTIONS(586), + [anon_sym_for] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_in] = ACTIONS(588), + [anon_sym_while] = ACTIONS(586), + [anon_sym_do] = ACTIONS(586), + [anon_sym_try] = ACTIONS(586), + [anon_sym_break] = ACTIONS(586), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_debugger] = ACTIONS(586), + [anon_sym_return] = ACTIONS(586), + [anon_sym_throw] = ACTIONS(586), + [anon_sym_SEMI] = ACTIONS(584), + [anon_sym_case] = ACTIONS(586), + [anon_sym_yield] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(584), + [sym_glimmer_opening_tag] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT] = ACTIONS(588), + [anon_sym_DOT] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_class] = ACTIONS(586), + [anon_sym_async] = ACTIONS(586), + [anon_sym_function] = ACTIONS(586), + [sym_optional_chain] = ACTIONS(590), + [anon_sym_new] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(590), + [anon_sym_PIPE_PIPE] = ACTIONS(590), + [anon_sym_GT_GT] = ACTIONS(588), + [anon_sym_GT_GT_GT] = ACTIONS(590), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(590), + [anon_sym_PIPE] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(590), + [anon_sym_STAR_STAR] = ACTIONS(590), + [anon_sym_LT_EQ] = ACTIONS(590), + [anon_sym_EQ_EQ] = ACTIONS(588), + [anon_sym_EQ_EQ_EQ] = ACTIONS(590), + [anon_sym_BANG_EQ] = ACTIONS(588), + [anon_sym_BANG_EQ_EQ] = ACTIONS(590), + [anon_sym_GT_EQ] = ACTIONS(590), + [anon_sym_QMARK_QMARK] = ACTIONS(590), + [anon_sym_instanceof] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_TILDE] = ACTIONS(584), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(584), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(584), + [sym_number] = ACTIONS(584), + [sym_private_property_identifier] = ACTIONS(584), + [sym_this] = ACTIONS(586), + [sym_super] = ACTIONS(586), + [sym_true] = ACTIONS(586), + [sym_false] = ACTIONS(586), + [sym_null] = ACTIONS(586), + [sym_undefined] = ACTIONS(586), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_static] = ACTIONS(586), + [anon_sym_get] = ACTIONS(586), + [anon_sym_set] = ACTIONS(586), + [sym__automatic_semicolon] = ACTIONS(592), + [sym__ternary_qmark] = ACTIONS(590), + [sym_html_comment] = ACTIONS(5), + }, + [60] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(677), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1164), + [sym_assignment_pattern] = STATE(1297), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1164), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(458), + [sym_subscript_expression] = STATE(458), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1164), + [sym_spread_element] = STATE(1289), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [sym_pattern] = STATE(1241), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_array_repeat1] = STATE(1280), + [aux_sym_array_pattern_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(530), + [anon_sym_export] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_COMMA] = ACTIONS(534), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(570), + [anon_sym_let] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(464), - [anon_sym_RBRACK] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_RBRACK] = ACTIONS(594), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(576), + [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -15946,74 +15793,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(578), + [sym_undefined] = ACTIONS(540), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(570), - [anon_sym_get] = ACTIONS(570), - [anon_sym_set] = ACTIONS(570), + [anon_sym_static] = ACTIONS(532), + [anon_sym_get] = ACTIONS(532), + [anon_sym_set] = ACTIONS(532), [sym_html_comment] = ACTIONS(5), }, - [63] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(753), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1139), - [sym_assignment_pattern] = STATE(1332), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1139), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(459), - [sym_subscript_expression] = STATE(459), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1139), - [sym_spread_element] = STATE(1347), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [sym_pattern] = STATE(1245), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [aux_sym_array_repeat1] = STATE(1334), - [aux_sym_array_pattern_repeat1] = STATE(1273), - [sym_identifier] = ACTIONS(568), - [anon_sym_export] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_COMMA] = ACTIONS(572), + [61] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(690), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1164), + [sym_assignment_pattern] = STATE(1297), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1164), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(458), + [sym_subscript_expression] = STATE(458), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1164), + [sym_spread_element] = STATE(1289), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [sym_pattern] = STATE(1241), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_array_repeat1] = STATE(1280), + [aux_sym_array_pattern_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(530), + [anon_sym_export] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_COMMA] = ACTIONS(534), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(570), + [anon_sym_let] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(464), - [anon_sym_RBRACK] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_RBRACK] = ACTIONS(594), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(576), + [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -16036,164 +15883,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(578), + [sym_undefined] = ACTIONS(540), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(570), - [anon_sym_get] = ACTIONS(570), - [anon_sym_set] = ACTIONS(570), + [anon_sym_static] = ACTIONS(532), + [anon_sym_get] = ACTIONS(532), + [anon_sym_set] = ACTIONS(532), [sym_html_comment] = ACTIONS(5), }, - [64] = { - [ts_builtin_sym_end] = ACTIONS(606), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(608), - [anon_sym_STAR] = ACTIONS(610), - [anon_sym_default] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(606), - [anon_sym_COMMA] = ACTIONS(612), - [anon_sym_RBRACE] = ACTIONS(606), - [anon_sym_import] = ACTIONS(608), - [anon_sym_with] = ACTIONS(608), - [anon_sym_var] = ACTIONS(608), - [anon_sym_let] = ACTIONS(608), - [anon_sym_const] = ACTIONS(608), - [anon_sym_else] = ACTIONS(608), - [anon_sym_if] = ACTIONS(608), - [anon_sym_switch] = ACTIONS(608), - [anon_sym_for] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(606), - [anon_sym_await] = ACTIONS(608), - [anon_sym_in] = ACTIONS(610), - [anon_sym_while] = ACTIONS(608), - [anon_sym_do] = ACTIONS(608), - [anon_sym_try] = ACTIONS(608), - [anon_sym_break] = ACTIONS(608), - [anon_sym_continue] = ACTIONS(608), - [anon_sym_debugger] = ACTIONS(608), - [anon_sym_return] = ACTIONS(608), - [anon_sym_throw] = ACTIONS(608), - [anon_sym_SEMI] = ACTIONS(606), - [anon_sym_case] = ACTIONS(608), - [anon_sym_yield] = ACTIONS(608), - [anon_sym_LBRACK] = ACTIONS(606), - [sym_glimmer_opening_tag] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_DOT] = ACTIONS(610), - [anon_sym_DQUOTE] = ACTIONS(606), - [anon_sym_SQUOTE] = ACTIONS(606), - [anon_sym_class] = ACTIONS(608), - [anon_sym_async] = ACTIONS(608), - [anon_sym_function] = ACTIONS(608), - [sym_optional_chain] = ACTIONS(612), - [anon_sym_new] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(612), - [anon_sym_PIPE_PIPE] = ACTIONS(612), - [anon_sym_GT_GT] = ACTIONS(610), - [anon_sym_GT_GT_GT] = ACTIONS(612), - [anon_sym_LT_LT] = ACTIONS(612), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_CARET] = ACTIONS(612), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(608), - [anon_sym_SLASH] = ACTIONS(608), - [anon_sym_PERCENT] = ACTIONS(612), - [anon_sym_STAR_STAR] = ACTIONS(612), - [anon_sym_LT_EQ] = ACTIONS(612), - [anon_sym_EQ_EQ] = ACTIONS(610), - [anon_sym_EQ_EQ_EQ] = ACTIONS(612), - [anon_sym_BANG_EQ] = ACTIONS(610), - [anon_sym_BANG_EQ_EQ] = ACTIONS(612), - [anon_sym_GT_EQ] = ACTIONS(612), - [anon_sym_QMARK_QMARK] = ACTIONS(612), - [anon_sym_instanceof] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(608), - [anon_sym_TILDE] = ACTIONS(606), - [anon_sym_typeof] = ACTIONS(608), - [anon_sym_void] = ACTIONS(608), - [anon_sym_delete] = ACTIONS(608), - [anon_sym_PLUS_PLUS] = ACTIONS(606), - [anon_sym_DASH_DASH] = ACTIONS(606), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(606), - [sym_number] = ACTIONS(606), - [sym_private_property_identifier] = ACTIONS(606), - [sym_this] = ACTIONS(608), - [sym_super] = ACTIONS(608), - [sym_true] = ACTIONS(608), - [sym_false] = ACTIONS(608), - [sym_null] = ACTIONS(608), - [sym_undefined] = ACTIONS(608), - [anon_sym_AT] = ACTIONS(606), - [anon_sym_static] = ACTIONS(608), - [anon_sym_get] = ACTIONS(608), - [anon_sym_set] = ACTIONS(608), - [sym__automatic_semicolon] = ACTIONS(614), - [sym__ternary_qmark] = ACTIONS(612), - [sym_html_comment] = ACTIONS(5), - }, - [65] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(679), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1139), - [sym_assignment_pattern] = STATE(1332), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1139), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(459), - [sym_subscript_expression] = STATE(459), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1139), - [sym_spread_element] = STATE(1292), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [sym_pattern] = STATE(1245), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [aux_sym_array_repeat1] = STATE(1295), - [aux_sym_array_pattern_repeat1] = STATE(1273), - [sym_identifier] = ACTIONS(568), - [anon_sym_export] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_COMMA] = ACTIONS(572), + [62] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1164), + [sym_assignment_pattern] = STATE(1297), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1164), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(458), + [sym_subscript_expression] = STATE(458), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1164), + [sym_spread_element] = STATE(1320), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [sym_pattern] = STATE(1241), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_array_repeat1] = STATE(1321), + [aux_sym_array_pattern_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(530), + [anon_sym_export] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_COMMA] = ACTIONS(534), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(570), + [anon_sym_let] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(464), - [anon_sym_RBRACK] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_RBRACK] = ACTIONS(596), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(576), + [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -16216,74 +15973,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(578), + [sym_undefined] = ACTIONS(540), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(570), - [anon_sym_get] = ACTIONS(570), - [anon_sym_set] = ACTIONS(570), + [anon_sym_static] = ACTIONS(532), + [anon_sym_get] = ACTIONS(532), + [anon_sym_set] = ACTIONS(532), [sym_html_comment] = ACTIONS(5), }, - [66] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(714), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1139), - [sym_assignment_pattern] = STATE(1332), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1139), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(459), - [sym_subscript_expression] = STATE(459), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1139), - [sym_spread_element] = STATE(1347), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [sym_pattern] = STATE(1245), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [aux_sym_array_repeat1] = STATE(1334), - [aux_sym_array_pattern_repeat1] = STATE(1273), - [sym_identifier] = ACTIONS(568), - [anon_sym_export] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_COMMA] = ACTIONS(572), + [63] = { + [ts_builtin_sym_end] = ACTIONS(598), + [sym_identifier] = ACTIONS(600), + [anon_sym_export] = ACTIONS(600), + [anon_sym_STAR] = ACTIONS(602), + [anon_sym_default] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(598), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_import] = ACTIONS(600), + [anon_sym_with] = ACTIONS(600), + [anon_sym_var] = ACTIONS(600), + [anon_sym_let] = ACTIONS(600), + [anon_sym_const] = ACTIONS(600), + [anon_sym_else] = ACTIONS(600), + [anon_sym_if] = ACTIONS(600), + [anon_sym_switch] = ACTIONS(600), + [anon_sym_for] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_await] = ACTIONS(600), + [anon_sym_in] = ACTIONS(602), + [anon_sym_while] = ACTIONS(600), + [anon_sym_do] = ACTIONS(600), + [anon_sym_try] = ACTIONS(600), + [anon_sym_break] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(600), + [anon_sym_debugger] = ACTIONS(600), + [anon_sym_return] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(600), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_case] = ACTIONS(600), + [anon_sym_yield] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(598), + [sym_glimmer_opening_tag] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_DOT] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(598), + [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_class] = ACTIONS(600), + [anon_sym_async] = ACTIONS(600), + [anon_sym_function] = ACTIONS(600), + [sym_optional_chain] = ACTIONS(604), + [anon_sym_new] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(604), + [anon_sym_PIPE_PIPE] = ACTIONS(604), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_GT_GT_GT] = ACTIONS(604), + [anon_sym_LT_LT] = ACTIONS(604), + [anon_sym_AMP] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_SLASH] = ACTIONS(600), + [anon_sym_PERCENT] = ACTIONS(604), + [anon_sym_STAR_STAR] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_EQ_EQ] = ACTIONS(602), + [anon_sym_EQ_EQ_EQ] = ACTIONS(604), + [anon_sym_BANG_EQ] = ACTIONS(602), + [anon_sym_BANG_EQ_EQ] = ACTIONS(604), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_QMARK_QMARK] = ACTIONS(604), + [anon_sym_instanceof] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(600), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_typeof] = ACTIONS(600), + [anon_sym_void] = ACTIONS(600), + [anon_sym_delete] = ACTIONS(600), + [anon_sym_PLUS_PLUS] = ACTIONS(598), + [anon_sym_DASH_DASH] = ACTIONS(598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(598), + [sym_number] = ACTIONS(598), + [sym_private_property_identifier] = ACTIONS(598), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(600), + [anon_sym_AT] = ACTIONS(598), + [anon_sym_static] = ACTIONS(600), + [anon_sym_get] = ACTIONS(600), + [anon_sym_set] = ACTIONS(600), + [sym__automatic_semicolon] = ACTIONS(606), + [sym__ternary_qmark] = ACTIONS(604), + [sym_html_comment] = ACTIONS(5), + }, + [64] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1164), + [sym_assignment_pattern] = STATE(1297), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1164), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(458), + [sym_subscript_expression] = STATE(458), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1164), + [sym_spread_element] = STATE(1320), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [sym_pattern] = STATE(1241), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_array_repeat1] = STATE(1321), + [aux_sym_array_pattern_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(530), + [anon_sym_export] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_COMMA] = ACTIONS(534), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(570), + [anon_sym_let] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(464), - [anon_sym_RBRACK] = ACTIONS(618), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_RBRACK] = ACTIONS(608), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(576), + [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -16306,254 +16153,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(578), + [sym_undefined] = ACTIONS(540), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(570), - [anon_sym_get] = ACTIONS(570), - [anon_sym_set] = ACTIONS(570), + [anon_sym_static] = ACTIONS(532), + [anon_sym_get] = ACTIONS(532), + [anon_sym_set] = ACTIONS(532), [sym_html_comment] = ACTIONS(5), }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(620), - [sym_identifier] = ACTIONS(622), - [anon_sym_export] = ACTIONS(622), - [anon_sym_STAR] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_COMMA] = ACTIONS(620), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_import] = ACTIONS(622), - [anon_sym_with] = ACTIONS(622), - [anon_sym_var] = ACTIONS(622), - [anon_sym_let] = ACTIONS(622), - [anon_sym_const] = ACTIONS(622), - [anon_sym_else] = ACTIONS(622), - [anon_sym_if] = ACTIONS(622), - [anon_sym_switch] = ACTIONS(622), - [anon_sym_for] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_await] = ACTIONS(622), - [anon_sym_in] = ACTIONS(622), - [anon_sym_while] = ACTIONS(622), - [anon_sym_do] = ACTIONS(622), - [anon_sym_try] = ACTIONS(622), - [anon_sym_break] = ACTIONS(622), - [anon_sym_continue] = ACTIONS(622), - [anon_sym_debugger] = ACTIONS(622), - [anon_sym_return] = ACTIONS(622), - [anon_sym_throw] = ACTIONS(622), - [anon_sym_SEMI] = ACTIONS(620), - [anon_sym_case] = ACTIONS(622), - [anon_sym_yield] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(620), - [sym_glimmer_opening_tag] = ACTIONS(620), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_DOT] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(620), - [anon_sym_SQUOTE] = ACTIONS(620), - [anon_sym_class] = ACTIONS(622), - [anon_sym_async] = ACTIONS(622), - [anon_sym_function] = ACTIONS(622), - [sym_optional_chain] = ACTIONS(620), - [anon_sym_new] = ACTIONS(622), - [anon_sym_AMP_AMP] = ACTIONS(620), - [anon_sym_PIPE_PIPE] = ACTIONS(620), - [anon_sym_GT_GT] = ACTIONS(622), - [anon_sym_GT_GT_GT] = ACTIONS(620), - [anon_sym_LT_LT] = ACTIONS(620), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_CARET] = ACTIONS(620), - [anon_sym_PIPE] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(622), - [anon_sym_DASH] = ACTIONS(622), - [anon_sym_SLASH] = ACTIONS(622), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_STAR_STAR] = ACTIONS(620), - [anon_sym_LT_EQ] = ACTIONS(620), - [anon_sym_EQ_EQ] = ACTIONS(622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(620), - [anon_sym_BANG_EQ] = ACTIONS(622), - [anon_sym_BANG_EQ_EQ] = ACTIONS(620), - [anon_sym_GT_EQ] = ACTIONS(620), - [anon_sym_QMARK_QMARK] = ACTIONS(620), - [anon_sym_instanceof] = ACTIONS(622), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_typeof] = ACTIONS(622), - [anon_sym_void] = ACTIONS(622), - [anon_sym_delete] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(620), + [65] = { + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(612), + [anon_sym_export] = ACTIONS(612), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_default] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_COMMA] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_import] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), + [anon_sym_var] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_const] = ACTIONS(612), + [anon_sym_else] = ACTIONS(612), + [anon_sym_if] = ACTIONS(612), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_for] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_while] = ACTIONS(612), + [anon_sym_do] = ACTIONS(612), + [anon_sym_try] = ACTIONS(612), + [anon_sym_break] = ACTIONS(612), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_debugger] = ACTIONS(612), + [anon_sym_return] = ACTIONS(612), + [anon_sym_throw] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_case] = ACTIONS(612), + [anon_sym_yield] = ACTIONS(612), + [anon_sym_LBRACK] = ACTIONS(610), + [sym_glimmer_opening_tag] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(612), + [anon_sym_GT] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(610), + [anon_sym_SQUOTE] = ACTIONS(610), + [anon_sym_class] = ACTIONS(612), + [anon_sym_async] = ACTIONS(612), + [anon_sym_function] = ACTIONS(612), + [sym_optional_chain] = ACTIONS(610), + [anon_sym_new] = ACTIONS(612), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_PIPE_PIPE] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(612), + [anon_sym_GT_GT_GT] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(612), + [anon_sym_CARET] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(612), + [anon_sym_SLASH] = ACTIONS(612), + [anon_sym_PERCENT] = ACTIONS(610), + [anon_sym_STAR_STAR] = ACTIONS(610), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(610), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(610), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_QMARK_QMARK] = ACTIONS(610), + [anon_sym_instanceof] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(610), + [anon_sym_typeof] = ACTIONS(612), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(610), + [anon_sym_DASH_DASH] = ACTIONS(610), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(620), - [sym_private_property_identifier] = ACTIONS(620), - [sym_this] = ACTIONS(622), - [sym_super] = ACTIONS(622), - [sym_true] = ACTIONS(622), - [sym_false] = ACTIONS(622), - [sym_null] = ACTIONS(622), - [sym_undefined] = ACTIONS(622), - [anon_sym_AT] = ACTIONS(620), - [anon_sym_static] = ACTIONS(622), - [anon_sym_get] = ACTIONS(622), - [anon_sym_set] = ACTIONS(622), - [sym__automatic_semicolon] = ACTIONS(620), - [sym__ternary_qmark] = ACTIONS(620), + [anon_sym_BQUOTE] = ACTIONS(610), + [sym_number] = ACTIONS(610), + [sym_private_property_identifier] = ACTIONS(610), + [sym_this] = ACTIONS(612), + [sym_super] = ACTIONS(612), + [sym_true] = ACTIONS(612), + [sym_false] = ACTIONS(612), + [sym_null] = ACTIONS(612), + [sym_undefined] = ACTIONS(612), + [anon_sym_AT] = ACTIONS(610), + [anon_sym_static] = ACTIONS(612), + [anon_sym_get] = ACTIONS(612), + [anon_sym_set] = ACTIONS(612), + [sym__automatic_semicolon] = ACTIONS(614), + [sym__ternary_qmark] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, - [68] = { - [ts_builtin_sym_end] = ACTIONS(624), - [sym_identifier] = ACTIONS(626), - [anon_sym_export] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_default] = ACTIONS(626), - [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_COMMA] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(624), - [anon_sym_import] = ACTIONS(626), - [anon_sym_with] = ACTIONS(626), - [anon_sym_var] = ACTIONS(626), - [anon_sym_let] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_else] = ACTIONS(626), - [anon_sym_if] = ACTIONS(626), - [anon_sym_switch] = ACTIONS(626), - [anon_sym_for] = ACTIONS(626), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_await] = ACTIONS(626), - [anon_sym_in] = ACTIONS(626), - [anon_sym_while] = ACTIONS(626), - [anon_sym_do] = ACTIONS(626), - [anon_sym_try] = ACTIONS(626), - [anon_sym_break] = ACTIONS(626), - [anon_sym_continue] = ACTIONS(626), - [anon_sym_debugger] = ACTIONS(626), - [anon_sym_return] = ACTIONS(626), - [anon_sym_throw] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(624), - [anon_sym_case] = ACTIONS(626), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(624), - [sym_glimmer_opening_tag] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(626), - [anon_sym_DOT] = ACTIONS(626), - [anon_sym_DQUOTE] = ACTIONS(624), - [anon_sym_SQUOTE] = ACTIONS(624), - [anon_sym_class] = ACTIONS(626), - [anon_sym_async] = ACTIONS(626), - [anon_sym_function] = ACTIONS(626), - [sym_optional_chain] = ACTIONS(624), - [anon_sym_new] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_GT_GT] = ACTIONS(626), - [anon_sym_GT_GT_GT] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(624), - [anon_sym_AMP] = ACTIONS(626), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(626), - [anon_sym_PLUS] = ACTIONS(626), - [anon_sym_DASH] = ACTIONS(626), - [anon_sym_SLASH] = ACTIONS(626), - [anon_sym_PERCENT] = ACTIONS(624), - [anon_sym_STAR_STAR] = ACTIONS(624), - [anon_sym_LT_EQ] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(626), - [anon_sym_EQ_EQ_EQ] = ACTIONS(624), - [anon_sym_BANG_EQ] = ACTIONS(626), - [anon_sym_BANG_EQ_EQ] = ACTIONS(624), - [anon_sym_GT_EQ] = ACTIONS(624), - [anon_sym_QMARK_QMARK] = ACTIONS(624), - [anon_sym_instanceof] = ACTIONS(626), - [anon_sym_BANG] = ACTIONS(626), - [anon_sym_TILDE] = ACTIONS(624), - [anon_sym_typeof] = ACTIONS(626), - [anon_sym_void] = ACTIONS(626), - [anon_sym_delete] = ACTIONS(626), - [anon_sym_PLUS_PLUS] = ACTIONS(624), - [anon_sym_DASH_DASH] = ACTIONS(624), + [66] = { + [ts_builtin_sym_end] = ACTIONS(616), + [sym_identifier] = ACTIONS(618), + [anon_sym_export] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(620), + [anon_sym_default] = ACTIONS(618), + [anon_sym_LBRACE] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(622), + [anon_sym_RBRACE] = ACTIONS(616), + [anon_sym_import] = ACTIONS(618), + [anon_sym_with] = ACTIONS(618), + [anon_sym_var] = ACTIONS(618), + [anon_sym_let] = ACTIONS(618), + [anon_sym_const] = ACTIONS(618), + [anon_sym_else] = ACTIONS(618), + [anon_sym_if] = ACTIONS(618), + [anon_sym_switch] = ACTIONS(618), + [anon_sym_for] = ACTIONS(618), + [anon_sym_LPAREN] = ACTIONS(616), + [anon_sym_await] = ACTIONS(618), + [anon_sym_in] = ACTIONS(620), + [anon_sym_while] = ACTIONS(618), + [anon_sym_do] = ACTIONS(618), + [anon_sym_try] = ACTIONS(618), + [anon_sym_break] = ACTIONS(618), + [anon_sym_continue] = ACTIONS(618), + [anon_sym_debugger] = ACTIONS(618), + [anon_sym_return] = ACTIONS(618), + [anon_sym_throw] = ACTIONS(618), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_case] = ACTIONS(618), + [anon_sym_yield] = ACTIONS(618), + [anon_sym_LBRACK] = ACTIONS(616), + [sym_glimmer_opening_tag] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_GT] = ACTIONS(620), + [anon_sym_DOT] = ACTIONS(620), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(616), + [anon_sym_class] = ACTIONS(618), + [anon_sym_async] = ACTIONS(618), + [anon_sym_function] = ACTIONS(618), + [sym_optional_chain] = ACTIONS(622), + [anon_sym_new] = ACTIONS(618), + [anon_sym_AMP_AMP] = ACTIONS(622), + [anon_sym_PIPE_PIPE] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(620), + [anon_sym_GT_GT_GT] = ACTIONS(622), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(620), + [anon_sym_CARET] = ACTIONS(622), + [anon_sym_PIPE] = ACTIONS(620), + [anon_sym_PLUS] = ACTIONS(618), + [anon_sym_DASH] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(622), + [anon_sym_STAR_STAR] = ACTIONS(622), + [anon_sym_LT_EQ] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(620), + [anon_sym_EQ_EQ_EQ] = ACTIONS(622), + [anon_sym_BANG_EQ] = ACTIONS(620), + [anon_sym_BANG_EQ_EQ] = ACTIONS(622), + [anon_sym_GT_EQ] = ACTIONS(622), + [anon_sym_QMARK_QMARK] = ACTIONS(622), + [anon_sym_instanceof] = ACTIONS(620), + [anon_sym_BANG] = ACTIONS(618), + [anon_sym_TILDE] = ACTIONS(616), + [anon_sym_typeof] = ACTIONS(618), + [anon_sym_void] = ACTIONS(618), + [anon_sym_delete] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(616), + [anon_sym_DASH_DASH] = ACTIONS(616), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(624), - [sym_number] = ACTIONS(624), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(626), - [anon_sym_AT] = ACTIONS(624), - [anon_sym_static] = ACTIONS(626), - [anon_sym_get] = ACTIONS(626), - [anon_sym_set] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(616), + [sym_number] = ACTIONS(616), + [sym_private_property_identifier] = ACTIONS(616), + [sym_this] = ACTIONS(618), + [sym_super] = ACTIONS(618), + [sym_true] = ACTIONS(618), + [sym_false] = ACTIONS(618), + [sym_null] = ACTIONS(618), + [sym_undefined] = ACTIONS(618), + [anon_sym_AT] = ACTIONS(616), + [anon_sym_static] = ACTIONS(618), + [anon_sym_get] = ACTIONS(618), + [anon_sym_set] = ACTIONS(618), [sym__automatic_semicolon] = ACTIONS(624), - [sym__ternary_qmark] = ACTIONS(624), + [sym__ternary_qmark] = ACTIONS(622), [sym_html_comment] = ACTIONS(5), }, - [69] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(679), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1139), - [sym_assignment_pattern] = STATE(1332), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1139), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(459), - [sym_subscript_expression] = STATE(459), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1139), - [sym_spread_element] = STATE(1292), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [sym_pattern] = STATE(1245), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [aux_sym_array_repeat1] = STATE(1295), - [aux_sym_array_pattern_repeat1] = STATE(1273), - [sym_identifier] = ACTIONS(568), - [anon_sym_export] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_COMMA] = ACTIONS(572), + [67] = { + [ts_builtin_sym_end] = ACTIONS(626), + [sym_identifier] = ACTIONS(628), + [anon_sym_export] = ACTIONS(628), + [anon_sym_STAR] = ACTIONS(628), + [anon_sym_default] = ACTIONS(628), + [anon_sym_LBRACE] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_RBRACE] = ACTIONS(626), + [anon_sym_import] = ACTIONS(628), + [anon_sym_with] = ACTIONS(628), + [anon_sym_var] = ACTIONS(628), + [anon_sym_let] = ACTIONS(628), + [anon_sym_const] = ACTIONS(628), + [anon_sym_else] = ACTIONS(628), + [anon_sym_if] = ACTIONS(628), + [anon_sym_switch] = ACTIONS(628), + [anon_sym_for] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_await] = ACTIONS(628), + [anon_sym_in] = ACTIONS(628), + [anon_sym_while] = ACTIONS(628), + [anon_sym_do] = ACTIONS(628), + [anon_sym_try] = ACTIONS(628), + [anon_sym_break] = ACTIONS(628), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_debugger] = ACTIONS(628), + [anon_sym_return] = ACTIONS(628), + [anon_sym_throw] = ACTIONS(628), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_case] = ACTIONS(628), + [anon_sym_yield] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(626), + [sym_glimmer_opening_tag] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(628), + [anon_sym_GT] = ACTIONS(628), + [anon_sym_DOT] = ACTIONS(628), + [anon_sym_DQUOTE] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(626), + [anon_sym_class] = ACTIONS(628), + [anon_sym_async] = ACTIONS(628), + [anon_sym_function] = ACTIONS(628), + [sym_optional_chain] = ACTIONS(626), + [anon_sym_new] = ACTIONS(628), + [anon_sym_AMP_AMP] = ACTIONS(626), + [anon_sym_PIPE_PIPE] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(628), + [anon_sym_GT_GT_GT] = ACTIONS(626), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(628), + [anon_sym_CARET] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(628), + [anon_sym_SLASH] = ACTIONS(628), + [anon_sym_PERCENT] = ACTIONS(626), + [anon_sym_STAR_STAR] = ACTIONS(626), + [anon_sym_LT_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(628), + [anon_sym_EQ_EQ_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ] = ACTIONS(628), + [anon_sym_BANG_EQ_EQ] = ACTIONS(626), + [anon_sym_GT_EQ] = ACTIONS(626), + [anon_sym_QMARK_QMARK] = ACTIONS(626), + [anon_sym_instanceof] = ACTIONS(628), + [anon_sym_BANG] = ACTIONS(628), + [anon_sym_TILDE] = ACTIONS(626), + [anon_sym_typeof] = ACTIONS(628), + [anon_sym_void] = ACTIONS(628), + [anon_sym_delete] = ACTIONS(628), + [anon_sym_PLUS_PLUS] = ACTIONS(626), + [anon_sym_DASH_DASH] = ACTIONS(626), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(626), + [sym_number] = ACTIONS(626), + [sym_private_property_identifier] = ACTIONS(626), + [sym_this] = ACTIONS(628), + [sym_super] = ACTIONS(628), + [sym_true] = ACTIONS(628), + [sym_false] = ACTIONS(628), + [sym_null] = ACTIONS(628), + [sym_undefined] = ACTIONS(628), + [anon_sym_AT] = ACTIONS(626), + [anon_sym_static] = ACTIONS(628), + [anon_sym_get] = ACTIONS(628), + [anon_sym_set] = ACTIONS(628), + [sym__automatic_semicolon] = ACTIONS(626), + [sym__ternary_qmark] = ACTIONS(626), + [sym_html_comment] = ACTIONS(5), + }, + [68] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1164), + [sym_assignment_pattern] = STATE(1297), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1164), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(458), + [sym_subscript_expression] = STATE(458), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1164), + [sym_spread_element] = STATE(1320), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [sym_pattern] = STATE(1241), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_array_repeat1] = STATE(1321), + [aux_sym_array_pattern_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(530), + [anon_sym_export] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_COMMA] = ACTIONS(534), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(570), + [anon_sym_let] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(464), - [anon_sym_RBRACK] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_RBRACK] = ACTIONS(630), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(576), + [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -16576,164 +16513,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(578), + [sym_undefined] = ACTIONS(540), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(570), - [anon_sym_get] = ACTIONS(570), - [anon_sym_set] = ACTIONS(570), + [anon_sym_static] = ACTIONS(532), + [anon_sym_get] = ACTIONS(532), + [anon_sym_set] = ACTIONS(532), [sym_html_comment] = ACTIONS(5), }, - [70] = { - [ts_builtin_sym_end] = ACTIONS(630), - [sym_identifier] = ACTIONS(632), - [anon_sym_export] = ACTIONS(632), - [anon_sym_STAR] = ACTIONS(632), - [anon_sym_default] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_COMMA] = ACTIONS(630), - [anon_sym_RBRACE] = ACTIONS(630), - [anon_sym_import] = ACTIONS(632), - [anon_sym_with] = ACTIONS(632), - [anon_sym_var] = ACTIONS(632), - [anon_sym_let] = ACTIONS(632), - [anon_sym_const] = ACTIONS(632), - [anon_sym_else] = ACTIONS(632), - [anon_sym_if] = ACTIONS(632), - [anon_sym_switch] = ACTIONS(632), - [anon_sym_for] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_await] = ACTIONS(632), - [anon_sym_in] = ACTIONS(632), - [anon_sym_while] = ACTIONS(632), - [anon_sym_do] = ACTIONS(632), - [anon_sym_try] = ACTIONS(632), - [anon_sym_break] = ACTIONS(632), - [anon_sym_continue] = ACTIONS(632), - [anon_sym_debugger] = ACTIONS(632), - [anon_sym_return] = ACTIONS(632), - [anon_sym_throw] = ACTIONS(632), - [anon_sym_SEMI] = ACTIONS(630), - [anon_sym_case] = ACTIONS(632), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(630), - [sym_glimmer_opening_tag] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(632), - [anon_sym_GT] = ACTIONS(632), - [anon_sym_DOT] = ACTIONS(632), - [anon_sym_DQUOTE] = ACTIONS(630), - [anon_sym_SQUOTE] = ACTIONS(630), - [anon_sym_class] = ACTIONS(632), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(632), - [sym_optional_chain] = ACTIONS(630), - [anon_sym_new] = ACTIONS(632), - [anon_sym_AMP_AMP] = ACTIONS(630), - [anon_sym_PIPE_PIPE] = ACTIONS(630), - [anon_sym_GT_GT] = ACTIONS(632), - [anon_sym_GT_GT_GT] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(630), - [anon_sym_AMP] = ACTIONS(632), - [anon_sym_CARET] = ACTIONS(630), - [anon_sym_PIPE] = ACTIONS(632), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_SLASH] = ACTIONS(632), - [anon_sym_PERCENT] = ACTIONS(630), - [anon_sym_STAR_STAR] = ACTIONS(630), - [anon_sym_LT_EQ] = ACTIONS(630), - [anon_sym_EQ_EQ] = ACTIONS(632), - [anon_sym_EQ_EQ_EQ] = ACTIONS(630), - [anon_sym_BANG_EQ] = ACTIONS(632), - [anon_sym_BANG_EQ_EQ] = ACTIONS(630), - [anon_sym_GT_EQ] = ACTIONS(630), - [anon_sym_QMARK_QMARK] = ACTIONS(630), - [anon_sym_instanceof] = ACTIONS(632), - [anon_sym_BANG] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_typeof] = ACTIONS(632), - [anon_sym_void] = ACTIONS(632), - [anon_sym_delete] = ACTIONS(632), - [anon_sym_PLUS_PLUS] = ACTIONS(630), - [anon_sym_DASH_DASH] = ACTIONS(630), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(630), - [sym_number] = ACTIONS(630), - [sym_private_property_identifier] = ACTIONS(630), - [sym_this] = ACTIONS(632), - [sym_super] = ACTIONS(632), - [sym_true] = ACTIONS(632), - [sym_false] = ACTIONS(632), - [sym_null] = ACTIONS(632), - [sym_undefined] = ACTIONS(632), - [anon_sym_AT] = ACTIONS(630), - [anon_sym_static] = ACTIONS(632), - [anon_sym_get] = ACTIONS(632), - [anon_sym_set] = ACTIONS(632), - [sym__automatic_semicolon] = ACTIONS(634), - [sym__ternary_qmark] = ACTIONS(630), - [sym_html_comment] = ACTIONS(5), - }, - [71] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(679), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1139), - [sym_assignment_pattern] = STATE(1332), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1139), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(459), - [sym_subscript_expression] = STATE(459), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1139), - [sym_spread_element] = STATE(1292), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [sym_pattern] = STATE(1245), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [aux_sym_array_repeat1] = STATE(1295), - [aux_sym_array_pattern_repeat1] = STATE(1273), - [sym_identifier] = ACTIONS(568), - [anon_sym_export] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_COMMA] = ACTIONS(572), + [69] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1164), + [sym_assignment_pattern] = STATE(1297), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1164), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(458), + [sym_subscript_expression] = STATE(458), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1164), + [sym_spread_element] = STATE(1320), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [sym_pattern] = STATE(1241), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_array_repeat1] = STATE(1321), + [aux_sym_array_pattern_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(530), + [anon_sym_export] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_COMMA] = ACTIONS(534), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(570), + [anon_sym_let] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(464), - [anon_sym_RBRACK] = ACTIONS(636), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_RBRACK] = ACTIONS(632), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(576), + [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -16756,255 +16603,435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(578), + [sym_undefined] = ACTIONS(540), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(570), - [anon_sym_get] = ACTIONS(570), - [anon_sym_set] = ACTIONS(570), + [anon_sym_static] = ACTIONS(532), + [anon_sym_get] = ACTIONS(532), + [anon_sym_set] = ACTIONS(532), + [sym_html_comment] = ACTIONS(5), + }, + [70] = { + [ts_builtin_sym_end] = ACTIONS(634), + [sym_identifier] = ACTIONS(636), + [anon_sym_export] = ACTIONS(636), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_default] = ACTIONS(636), + [anon_sym_LBRACE] = ACTIONS(634), + [anon_sym_COMMA] = ACTIONS(634), + [anon_sym_RBRACE] = ACTIONS(634), + [anon_sym_import] = ACTIONS(636), + [anon_sym_with] = ACTIONS(636), + [anon_sym_var] = ACTIONS(636), + [anon_sym_let] = ACTIONS(636), + [anon_sym_const] = ACTIONS(636), + [anon_sym_else] = ACTIONS(636), + [anon_sym_if] = ACTIONS(636), + [anon_sym_switch] = ACTIONS(636), + [anon_sym_for] = ACTIONS(636), + [anon_sym_LPAREN] = ACTIONS(634), + [anon_sym_await] = ACTIONS(636), + [anon_sym_in] = ACTIONS(636), + [anon_sym_while] = ACTIONS(636), + [anon_sym_do] = ACTIONS(636), + [anon_sym_try] = ACTIONS(636), + [anon_sym_break] = ACTIONS(636), + [anon_sym_continue] = ACTIONS(636), + [anon_sym_debugger] = ACTIONS(636), + [anon_sym_return] = ACTIONS(636), + [anon_sym_throw] = ACTIONS(636), + [anon_sym_SEMI] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), + [anon_sym_yield] = ACTIONS(636), + [anon_sym_LBRACK] = ACTIONS(634), + [sym_glimmer_opening_tag] = ACTIONS(634), + [anon_sym_LT] = ACTIONS(636), + [anon_sym_GT] = ACTIONS(636), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_DQUOTE] = ACTIONS(634), + [anon_sym_SQUOTE] = ACTIONS(634), + [anon_sym_class] = ACTIONS(636), + [anon_sym_async] = ACTIONS(636), + [anon_sym_function] = ACTIONS(636), + [sym_optional_chain] = ACTIONS(634), + [anon_sym_new] = ACTIONS(636), + [anon_sym_AMP_AMP] = ACTIONS(634), + [anon_sym_PIPE_PIPE] = ACTIONS(634), + [anon_sym_GT_GT] = ACTIONS(636), + [anon_sym_GT_GT_GT] = ACTIONS(634), + [anon_sym_LT_LT] = ACTIONS(634), + [anon_sym_AMP] = ACTIONS(636), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_PIPE] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(636), + [anon_sym_DASH] = ACTIONS(636), + [anon_sym_SLASH] = ACTIONS(636), + [anon_sym_PERCENT] = ACTIONS(634), + [anon_sym_STAR_STAR] = ACTIONS(634), + [anon_sym_LT_EQ] = ACTIONS(634), + [anon_sym_EQ_EQ] = ACTIONS(636), + [anon_sym_EQ_EQ_EQ] = ACTIONS(634), + [anon_sym_BANG_EQ] = ACTIONS(636), + [anon_sym_BANG_EQ_EQ] = ACTIONS(634), + [anon_sym_GT_EQ] = ACTIONS(634), + [anon_sym_QMARK_QMARK] = ACTIONS(634), + [anon_sym_instanceof] = ACTIONS(636), + [anon_sym_BANG] = ACTIONS(636), + [anon_sym_TILDE] = ACTIONS(634), + [anon_sym_typeof] = ACTIONS(636), + [anon_sym_void] = ACTIONS(636), + [anon_sym_delete] = ACTIONS(636), + [anon_sym_PLUS_PLUS] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(634), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(634), + [sym_number] = ACTIONS(634), + [sym_private_property_identifier] = ACTIONS(634), + [sym_this] = ACTIONS(636), + [sym_super] = ACTIONS(636), + [sym_true] = ACTIONS(636), + [sym_false] = ACTIONS(636), + [sym_null] = ACTIONS(636), + [sym_undefined] = ACTIONS(636), + [anon_sym_AT] = ACTIONS(634), + [anon_sym_static] = ACTIONS(636), + [anon_sym_get] = ACTIONS(636), + [anon_sym_set] = ACTIONS(636), + [sym__automatic_semicolon] = ACTIONS(634), + [sym__ternary_qmark] = ACTIONS(634), + [sym_html_comment] = ACTIONS(5), + }, + [71] = { + [ts_builtin_sym_end] = ACTIONS(508), + [sym_identifier] = ACTIONS(510), + [anon_sym_export] = ACTIONS(510), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_default] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(508), + [anon_sym_COMMA] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_import] = ACTIONS(510), + [anon_sym_with] = 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(510), + [anon_sym_while] = ACTIONS(510), + [anon_sym_do] = ACTIONS(510), + [anon_sym_try] = 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), + [sym_glimmer_opening_tag] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(510), + [anon_sym_GT] = ACTIONS(510), + [anon_sym_DOT] = ACTIONS(510), + [anon_sym_DQUOTE] = ACTIONS(508), + [anon_sym_SQUOTE] = ACTIONS(508), + [anon_sym_class] = ACTIONS(510), + [anon_sym_async] = ACTIONS(510), + [anon_sym_function] = ACTIONS(510), + [sym_optional_chain] = ACTIONS(508), + [anon_sym_new] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(508), + [anon_sym_PIPE_PIPE] = ACTIONS(508), + [anon_sym_GT_GT] = ACTIONS(510), + [anon_sym_GT_GT_GT] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_SLASH] = ACTIONS(510), + [anon_sym_PERCENT] = ACTIONS(508), + [anon_sym_STAR_STAR] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_EQ_EQ] = ACTIONS(510), + [anon_sym_EQ_EQ_EQ] = ACTIONS(508), + [anon_sym_BANG_EQ] = ACTIONS(510), + [anon_sym_BANG_EQ_EQ] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_QMARK_QMARK] = ACTIONS(508), + [anon_sym_instanceof] = ACTIONS(510), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(508), + [sym_number] = ACTIONS(508), + [sym_private_property_identifier] = 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(638), + [sym__ternary_qmark] = ACTIONS(508), [sym_html_comment] = ACTIONS(5), }, [72] = { - [ts_builtin_sym_end] = ACTIONS(630), - [sym_identifier] = ACTIONS(632), - [anon_sym_export] = ACTIONS(632), - [anon_sym_STAR] = ACTIONS(632), - [anon_sym_default] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_COMMA] = ACTIONS(630), - [anon_sym_RBRACE] = ACTIONS(630), - [anon_sym_import] = ACTIONS(632), - [anon_sym_with] = ACTIONS(632), - [anon_sym_var] = ACTIONS(632), - [anon_sym_let] = ACTIONS(632), - [anon_sym_const] = ACTIONS(632), - [anon_sym_else] = ACTIONS(632), - [anon_sym_if] = ACTIONS(632), - [anon_sym_switch] = ACTIONS(632), - [anon_sym_for] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_await] = ACTIONS(632), - [anon_sym_in] = ACTIONS(632), - [anon_sym_while] = ACTIONS(632), - [anon_sym_do] = ACTIONS(632), - [anon_sym_try] = ACTIONS(632), - [anon_sym_break] = ACTIONS(632), - [anon_sym_continue] = ACTIONS(632), - [anon_sym_debugger] = ACTIONS(632), - [anon_sym_return] = ACTIONS(632), - [anon_sym_throw] = ACTIONS(632), - [anon_sym_SEMI] = ACTIONS(630), - [anon_sym_case] = ACTIONS(632), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(630), - [sym_glimmer_opening_tag] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(632), - [anon_sym_GT] = ACTIONS(632), - [anon_sym_DOT] = ACTIONS(632), - [anon_sym_DQUOTE] = ACTIONS(630), - [anon_sym_SQUOTE] = ACTIONS(630), - [anon_sym_class] = ACTIONS(632), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(632), - [sym_optional_chain] = ACTIONS(630), - [anon_sym_new] = ACTIONS(632), - [anon_sym_AMP_AMP] = ACTIONS(630), - [anon_sym_PIPE_PIPE] = ACTIONS(630), - [anon_sym_GT_GT] = ACTIONS(632), - [anon_sym_GT_GT_GT] = ACTIONS(630), - [anon_sym_LT_LT] = ACTIONS(630), - [anon_sym_AMP] = ACTIONS(632), - [anon_sym_CARET] = ACTIONS(630), - [anon_sym_PIPE] = ACTIONS(632), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_SLASH] = ACTIONS(632), - [anon_sym_PERCENT] = ACTIONS(630), - [anon_sym_STAR_STAR] = ACTIONS(630), - [anon_sym_LT_EQ] = ACTIONS(630), - [anon_sym_EQ_EQ] = ACTIONS(632), - [anon_sym_EQ_EQ_EQ] = ACTIONS(630), - [anon_sym_BANG_EQ] = ACTIONS(632), - [anon_sym_BANG_EQ_EQ] = ACTIONS(630), - [anon_sym_GT_EQ] = ACTIONS(630), - [anon_sym_QMARK_QMARK] = ACTIONS(630), - [anon_sym_instanceof] = ACTIONS(632), - [anon_sym_BANG] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_typeof] = ACTIONS(632), - [anon_sym_void] = ACTIONS(632), - [anon_sym_delete] = ACTIONS(632), - [anon_sym_PLUS_PLUS] = ACTIONS(630), - [anon_sym_DASH_DASH] = ACTIONS(630), + [ts_builtin_sym_end] = ACTIONS(640), + [sym_identifier] = ACTIONS(642), + [anon_sym_export] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_default] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_import] = ACTIONS(642), + [anon_sym_with] = ACTIONS(642), + [anon_sym_var] = ACTIONS(642), + [anon_sym_let] = ACTIONS(642), + [anon_sym_const] = ACTIONS(642), + [anon_sym_else] = ACTIONS(642), + [anon_sym_if] = ACTIONS(642), + [anon_sym_switch] = ACTIONS(642), + [anon_sym_for] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_await] = ACTIONS(642), + [anon_sym_in] = ACTIONS(642), + [anon_sym_while] = ACTIONS(642), + [anon_sym_do] = ACTIONS(642), + [anon_sym_try] = ACTIONS(642), + [anon_sym_break] = ACTIONS(642), + [anon_sym_continue] = ACTIONS(642), + [anon_sym_debugger] = ACTIONS(642), + [anon_sym_return] = ACTIONS(642), + [anon_sym_throw] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_case] = ACTIONS(642), + [anon_sym_yield] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(640), + [sym_glimmer_opening_tag] = ACTIONS(640), + [anon_sym_LT] = ACTIONS(642), + [anon_sym_GT] = ACTIONS(642), + [anon_sym_DOT] = ACTIONS(642), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(640), + [anon_sym_class] = ACTIONS(642), + [anon_sym_async] = ACTIONS(642), + [anon_sym_function] = ACTIONS(642), + [sym_optional_chain] = ACTIONS(640), + [anon_sym_new] = ACTIONS(642), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_GT_GT] = ACTIONS(642), + [anon_sym_GT_GT_GT] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(640), + [anon_sym_AMP] = ACTIONS(642), + [anon_sym_CARET] = ACTIONS(640), + [anon_sym_PIPE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(642), + [anon_sym_DASH] = ACTIONS(642), + [anon_sym_SLASH] = ACTIONS(642), + [anon_sym_PERCENT] = ACTIONS(640), + [anon_sym_STAR_STAR] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_EQ_EQ] = ACTIONS(642), + [anon_sym_EQ_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(642), + [anon_sym_BANG_EQ_EQ] = ACTIONS(640), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_QMARK_QMARK] = ACTIONS(640), + [anon_sym_instanceof] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(640), + [anon_sym_typeof] = ACTIONS(642), + [anon_sym_void] = ACTIONS(642), + [anon_sym_delete] = ACTIONS(642), + [anon_sym_PLUS_PLUS] = ACTIONS(640), + [anon_sym_DASH_DASH] = ACTIONS(640), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(630), - [sym_number] = ACTIONS(630), - [sym_private_property_identifier] = ACTIONS(630), - [sym_this] = ACTIONS(632), - [sym_super] = ACTIONS(632), - [sym_true] = ACTIONS(632), - [sym_false] = ACTIONS(632), - [sym_null] = ACTIONS(632), - [sym_undefined] = ACTIONS(632), - [anon_sym_AT] = ACTIONS(630), - [anon_sym_static] = ACTIONS(632), - [anon_sym_get] = ACTIONS(632), - [anon_sym_set] = ACTIONS(632), - [sym__automatic_semicolon] = ACTIONS(630), - [sym__ternary_qmark] = ACTIONS(630), + [anon_sym_BQUOTE] = ACTIONS(640), + [sym_number] = ACTIONS(640), + [sym_private_property_identifier] = ACTIONS(640), + [sym_this] = ACTIONS(642), + [sym_super] = ACTIONS(642), + [sym_true] = ACTIONS(642), + [sym_false] = ACTIONS(642), + [sym_null] = ACTIONS(642), + [sym_undefined] = ACTIONS(642), + [anon_sym_AT] = ACTIONS(640), + [anon_sym_static] = ACTIONS(642), + [anon_sym_get] = ACTIONS(642), + [anon_sym_set] = ACTIONS(642), + [sym__automatic_semicolon] = ACTIONS(640), + [sym__ternary_qmark] = ACTIONS(640), [sym_html_comment] = ACTIONS(5), }, [73] = { - [ts_builtin_sym_end] = ACTIONS(638), - [sym_identifier] = ACTIONS(640), - [anon_sym_export] = ACTIONS(640), - [anon_sym_STAR] = ACTIONS(640), - [anon_sym_default] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_COMMA] = ACTIONS(638), - [anon_sym_RBRACE] = ACTIONS(638), - [anon_sym_import] = ACTIONS(640), - [anon_sym_with] = ACTIONS(640), - [anon_sym_var] = ACTIONS(640), - [anon_sym_let] = ACTIONS(640), - [anon_sym_const] = ACTIONS(640), - [anon_sym_else] = ACTIONS(640), - [anon_sym_if] = ACTIONS(640), - [anon_sym_switch] = ACTIONS(640), - [anon_sym_for] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(638), - [anon_sym_await] = ACTIONS(640), - [anon_sym_in] = ACTIONS(640), - [anon_sym_while] = ACTIONS(640), - [anon_sym_do] = ACTIONS(640), - [anon_sym_try] = ACTIONS(640), - [anon_sym_break] = ACTIONS(640), - [anon_sym_continue] = ACTIONS(640), - [anon_sym_debugger] = ACTIONS(640), - [anon_sym_return] = ACTIONS(640), - [anon_sym_throw] = ACTIONS(640), - [anon_sym_SEMI] = ACTIONS(638), - [anon_sym_case] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(638), - [sym_glimmer_opening_tag] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(640), - [anon_sym_DOT] = ACTIONS(640), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_class] = ACTIONS(640), - [anon_sym_async] = ACTIONS(640), - [anon_sym_function] = ACTIONS(640), - [sym_optional_chain] = ACTIONS(638), - [anon_sym_new] = ACTIONS(640), - [anon_sym_AMP_AMP] = ACTIONS(638), - [anon_sym_PIPE_PIPE] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(640), - [anon_sym_GT_GT_GT] = ACTIONS(638), - [anon_sym_LT_LT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_PIPE] = ACTIONS(640), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_SLASH] = ACTIONS(640), - [anon_sym_PERCENT] = ACTIONS(638), - [anon_sym_STAR_STAR] = ACTIONS(638), - [anon_sym_LT_EQ] = ACTIONS(638), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_EQ_EQ_EQ] = ACTIONS(638), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ_EQ] = ACTIONS(638), - [anon_sym_GT_EQ] = ACTIONS(638), - [anon_sym_QMARK_QMARK] = ACTIONS(638), - [anon_sym_instanceof] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_typeof] = ACTIONS(640), - [anon_sym_void] = ACTIONS(640), - [anon_sym_delete] = ACTIONS(640), - [anon_sym_PLUS_PLUS] = ACTIONS(638), - [anon_sym_DASH_DASH] = ACTIONS(638), + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(612), + [anon_sym_export] = ACTIONS(612), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_default] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_COMMA] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_import] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), + [anon_sym_var] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_const] = ACTIONS(612), + [anon_sym_else] = ACTIONS(612), + [anon_sym_if] = ACTIONS(612), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_for] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_in] = ACTIONS(612), + [anon_sym_while] = ACTIONS(612), + [anon_sym_do] = ACTIONS(612), + [anon_sym_try] = ACTIONS(612), + [anon_sym_break] = ACTIONS(612), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_debugger] = ACTIONS(612), + [anon_sym_return] = ACTIONS(612), + [anon_sym_throw] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_case] = ACTIONS(612), + [anon_sym_yield] = ACTIONS(612), + [anon_sym_LBRACK] = ACTIONS(610), + [sym_glimmer_opening_tag] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(612), + [anon_sym_GT] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(610), + [anon_sym_SQUOTE] = ACTIONS(610), + [anon_sym_class] = ACTIONS(612), + [anon_sym_async] = ACTIONS(612), + [anon_sym_function] = ACTIONS(612), + [sym_optional_chain] = ACTIONS(610), + [anon_sym_new] = ACTIONS(612), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_PIPE_PIPE] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(612), + [anon_sym_GT_GT_GT] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(612), + [anon_sym_CARET] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(612), + [anon_sym_SLASH] = ACTIONS(612), + [anon_sym_PERCENT] = ACTIONS(610), + [anon_sym_STAR_STAR] = ACTIONS(610), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(610), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(610), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_QMARK_QMARK] = ACTIONS(610), + [anon_sym_instanceof] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_TILDE] = ACTIONS(610), + [anon_sym_typeof] = ACTIONS(612), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(610), + [anon_sym_DASH_DASH] = ACTIONS(610), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(638), - [sym_number] = ACTIONS(638), - [sym_private_property_identifier] = ACTIONS(638), - [sym_this] = ACTIONS(640), - [sym_super] = ACTIONS(640), - [sym_true] = ACTIONS(640), - [sym_false] = ACTIONS(640), - [sym_null] = ACTIONS(640), - [sym_undefined] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(638), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), - [sym__automatic_semicolon] = ACTIONS(638), - [sym__ternary_qmark] = ACTIONS(638), + [anon_sym_BQUOTE] = ACTIONS(610), + [sym_number] = ACTIONS(610), + [sym_private_property_identifier] = ACTIONS(610), + [sym_this] = ACTIONS(612), + [sym_super] = ACTIONS(612), + [sym_true] = ACTIONS(612), + [sym_false] = ACTIONS(612), + [sym_null] = ACTIONS(612), + [sym_undefined] = ACTIONS(612), + [anon_sym_AT] = ACTIONS(610), + [anon_sym_static] = ACTIONS(612), + [anon_sym_get] = ACTIONS(612), + [anon_sym_set] = ACTIONS(612), + [sym__automatic_semicolon] = ACTIONS(610), + [sym__ternary_qmark] = ACTIONS(610), [sym_html_comment] = ACTIONS(5), }, [74] = { - [sym_declaration] = STATE(378), - [sym_import] = STATE(1095), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(776), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1186), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(642), - [anon_sym_const] = ACTIONS(25), + [sym_import] = STATE(1117), + [sym_expression_statement] = STATE(99), + [sym_variable_declaration] = STATE(99), + [sym_lexical_declaration] = STATE(99), + [sym_empty_statement] = STATE(99), + [sym_parenthesized_expression] = STATE(459), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1269), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1269), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(459), + [sym_subscript_expression] = STATE(459), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1269), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(644), + [anon_sym_export] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_import] = ACTIONS(420), + [anon_sym_var] = ACTIONS(650), + [anon_sym_let] = ACTIONS(652), + [anon_sym_const] = ACTIONS(654), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(656), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(644), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(658), + [anon_sym_function] = ACTIONS(426), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -17025,63 +17052,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(660), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(646), + [anon_sym_get] = ACTIONS(646), + [anon_sym_set] = ACTIONS(646), [sym_html_comment] = ACTIONS(5), }, [75] = { - [sym_declaration] = STATE(378), - [sym_import] = STATE(1095), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(776), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1199), + [sym_declaration] = STATE(396), + [sym_import] = STATE(1117), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(758), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1190), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), + [anon_sym_import] = ACTIONS(420), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(642), + [anon_sym_let] = ACTIONS(662), [anon_sym_const] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), @@ -17091,9 +17118,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(348), - [anon_sym_async] = ACTIONS(646), - [anon_sym_function] = ACTIONS(352), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(664), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -17122,67 +17149,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [76] = { - [sym_import] = STATE(1095), - [sym_expression_statement] = STATE(100), - [sym_variable_declaration] = STATE(100), - [sym_lexical_declaration] = STATE(100), - [sym_empty_statement] = STATE(100), - [sym_parenthesized_expression] = STATE(456), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1258), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1258), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(456), - [sym_subscript_expression] = STATE(456), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1258), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(648), - [anon_sym_export] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_import] = ACTIONS(366), - [anon_sym_var] = ACTIONS(654), - [anon_sym_let] = ACTIONS(656), - [anon_sym_const] = ACTIONS(658), + [sym_import] = STATE(1117), + [sym_expression_statement] = STATE(95), + [sym_variable_declaration] = STATE(95), + [sym_lexical_declaration] = STATE(95), + [sym_empty_statement] = STATE(95), + [sym_parenthesized_expression] = STATE(459), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1269), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1269), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(459), + [sym_subscript_expression] = STATE(459), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1269), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(644), + [anon_sym_export] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_import] = ACTIONS(420), + [anon_sym_var] = ACTIONS(650), + [anon_sym_let] = ACTIONS(652), + [anon_sym_const] = ACTIONS(654), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), [anon_sym_SEMI] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(656), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(658), + [anon_sym_function] = ACTIONS(426), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -17203,75 +17230,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(664), + [sym_undefined] = ACTIONS(660), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(650), - [anon_sym_get] = ACTIONS(650), - [anon_sym_set] = ACTIONS(650), + [anon_sym_static] = ACTIONS(646), + [anon_sym_get] = ACTIONS(646), + [anon_sym_set] = ACTIONS(646), [sym_html_comment] = ACTIONS(5), }, [77] = { - [sym_import] = STATE(1095), - [sym_expression_statement] = STATE(99), - [sym_variable_declaration] = STATE(99), - [sym_lexical_declaration] = STATE(99), - [sym_empty_statement] = STATE(99), - [sym_parenthesized_expression] = STATE(456), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1258), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1258), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(456), - [sym_subscript_expression] = STATE(456), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1258), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(648), - [anon_sym_export] = ACTIONS(650), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_import] = ACTIONS(366), - [anon_sym_var] = ACTIONS(654), - [anon_sym_let] = ACTIONS(656), - [anon_sym_const] = ACTIONS(658), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1117), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(784), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1190), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(662), + [anon_sym_const] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(662), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(664), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -17292,63 +17319,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(664), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(650), - [anon_sym_get] = ACTIONS(650), - [anon_sym_set] = ACTIONS(650), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, [78] = { - [sym_declaration] = STATE(386), - [sym_import] = STATE(1095), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(779), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1199), + [sym_declaration] = STATE(396), + [sym_import] = STATE(1117), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(758), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1185), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), + [anon_sym_import] = ACTIONS(420), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(642), + [anon_sym_let] = ACTIONS(662), [anon_sym_const] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), @@ -17359,7 +17386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(348), - [anon_sym_async] = ACTIONS(646), + [anon_sym_async] = ACTIONS(666), [anon_sym_function] = ACTIONS(352), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), @@ -17389,55 +17416,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [79] = { - [sym_declaration] = STATE(386), - [sym_import] = STATE(1095), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(779), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_class_declaration] = STATE(357), - [sym_function_expression] = STATE(713), - [sym_function_declaration] = STATE(357), - [sym_generator_function] = STATE(713), - [sym_generator_function_declaration] = STATE(357), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1186), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1117), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(784), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_class_declaration] = STATE(363), + [sym_function_expression] = STATE(685), + [sym_function_declaration] = STATE(363), + [sym_generator_function] = STATE(685), + [sym_generator_function_declaration] = STATE(363), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1185), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), + [anon_sym_import] = ACTIONS(420), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(642), + [anon_sym_let] = ACTIONS(662), [anon_sym_const] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), @@ -17447,9 +17474,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(644), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(348), + [anon_sym_async] = ACTIONS(666), + [anon_sym_function] = ACTIONS(352), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -17478,67 +17505,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [80] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(796), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1139), - [sym_assignment_pattern] = STATE(1332), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1139), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(470), - [sym_subscript_expression] = STATE(470), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1139), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [sym_pattern] = STATE(1245), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [aux_sym_array_pattern_repeat1] = STATE(1273), - [sym_identifier] = ACTIONS(666), - [anon_sym_export] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(672), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(821), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1164), + [sym_assignment_pattern] = STATE(1297), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1164), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(469), + [sym_subscript_expression] = STATE(469), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1164), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [sym_pattern] = STATE(1241), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_array_pattern_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(668), + [anon_sym_export] = ACTIONS(670), + [anon_sym_LBRACE] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(674), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(668), + [anon_sym_let] = ACTIONS(670), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(674), - [anon_sym_RBRACK] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(678), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(678), + [anon_sym_async] = ACTIONS(680), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_DOT] = ACTIONS(682), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), @@ -17558,338 +17585,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(682), + [sym_undefined] = ACTIONS(684), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(668), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), + [anon_sym_static] = ACTIONS(670), + [anon_sym_get] = ACTIONS(670), + [anon_sym_set] = ACTIONS(670), [sym_html_comment] = ACTIONS(5), }, [81] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(827), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1157), - [sym_assignment_pattern] = STATE(1289), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1157), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(461), - [sym_subscript_expression] = STATE(461), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1157), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [sym_pattern] = STATE(1208), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [aux_sym_array_pattern_repeat1] = STATE(1296), - [sym_identifier] = ACTIONS(684), - [anon_sym_export] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_COMMA] = ACTIONS(672), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(689), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1164), + [sym_assignment_pattern] = STATE(1516), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1164), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(458), + [sym_subscript_expression] = STATE(458), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1164), + [sym_spread_element] = STATE(1258), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [sym_pattern] = STATE(1259), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(530), + [anon_sym_export] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_COMMA] = ACTIONS(686), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(686), + [anon_sym_let] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_RBRACK] = ACTIONS(692), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_RBRACK] = ACTIONS(686), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(694), + [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(696), + [sym_undefined] = ACTIONS(540), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(686), - [anon_sym_get] = ACTIONS(686), - [anon_sym_set] = ACTIONS(686), + [anon_sym_static] = ACTIONS(532), + [anon_sym_get] = ACTIONS(532), + [anon_sym_set] = ACTIONS(532), [sym_html_comment] = ACTIONS(5), }, [82] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(690), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1139), - [sym_assignment_pattern] = STATE(1565), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1139), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(459), - [sym_subscript_expression] = STATE(459), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1139), - [sym_spread_element] = STATE(1282), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [sym_pattern] = STATE(1283), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(568), - [anon_sym_export] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_COMMA] = ACTIONS(698), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1172), + [sym_assignment_pattern] = STATE(1319), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1172), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(457), + [sym_subscript_expression] = STATE(457), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1172), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [sym_pattern] = STATE(1207), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_array_pattern_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(689), + [anon_sym_export] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_COMMA] = ACTIONS(674), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(570), + [anon_sym_let] = ACTIONS(691), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(464), - [anon_sym_RBRACK] = ACTIONS(698), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_RBRACK] = ACTIONS(697), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(576), + [anon_sym_async] = ACTIONS(699), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(682), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(578), + [sym_undefined] = ACTIONS(701), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(570), - [anon_sym_get] = ACTIONS(570), - [anon_sym_set] = ACTIONS(570), + [anon_sym_static] = ACTIONS(691), + [anon_sym_get] = ACTIONS(691), + [anon_sym_set] = ACTIONS(691), [sym_html_comment] = ACTIONS(5), }, [83] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(827), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1157), - [sym_assignment_pattern] = STATE(1332), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1157), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(461), - [sym_subscript_expression] = STATE(461), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1157), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [sym_pattern] = STATE(1245), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [aux_sym_array_pattern_repeat1] = STATE(1273), - [sym_identifier] = ACTIONS(684), - [anon_sym_export] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_COMMA] = ACTIONS(672), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1172), + [sym_assignment_pattern] = STATE(1297), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1172), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(457), + [sym_subscript_expression] = STATE(457), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1172), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [sym_pattern] = STATE(1241), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_array_pattern_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(689), + [anon_sym_export] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_COMMA] = ACTIONS(674), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(686), + [anon_sym_let] = ACTIONS(691), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_RBRACK] = ACTIONS(676), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_RBRACK] = ACTIONS(678), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(694), + [anon_sym_async] = ACTIONS(699), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(682), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(696), + [sym_undefined] = ACTIONS(701), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(686), - [anon_sym_get] = ACTIONS(686), - [anon_sym_set] = ACTIONS(686), + [anon_sym_static] = ACTIONS(691), + [anon_sym_get] = ACTIONS(691), + [anon_sym_set] = ACTIONS(691), [sym_html_comment] = ACTIONS(5), }, [84] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(693), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1139), - [sym_assignment_pattern] = STATE(1261), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1139), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(459), - [sym_subscript_expression] = STATE(459), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1139), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1672), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [sym_pattern] = STATE(1237), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(568), - [anon_sym_export] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(697), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1164), + [sym_assignment_pattern] = STATE(1324), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1164), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(458), + [sym_subscript_expression] = STATE(458), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1164), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_sequence_expression] = STATE(1652), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [sym_pattern] = STATE(1209), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(530), + [anon_sym_export] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(570), + [anon_sym_let] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(701), + [anon_sym_RPAREN] = ACTIONS(703), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(576), + [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_DOT_DOT_DOT] = ACTIONS(682), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), @@ -17909,316 +17936,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(578), + [sym_undefined] = ACTIONS(540), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(570), - [anon_sym_get] = ACTIONS(570), - [anon_sym_set] = ACTIONS(570), + [anon_sym_static] = ACTIONS(532), + [anon_sym_get] = ACTIONS(532), + [anon_sym_set] = ACTIONS(532), [sym_html_comment] = ACTIONS(5), }, [85] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(827), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1157), - [sym_assignment_pattern] = STATE(1565), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1157), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(461), - [sym_subscript_expression] = STATE(461), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1157), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [sym_pattern] = STATE(1283), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(684), - [anon_sym_export] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_COMMA] = ACTIONS(703), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(709), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1164), + [sym_assignment_pattern] = STATE(1324), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1164), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(458), + [sym_subscript_expression] = STATE(458), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1164), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_sequence_expression] = STATE(1643), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [sym_pattern] = STATE(1209), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(530), + [anon_sym_export] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(686), + [anon_sym_let] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(690), - [anon_sym_RBRACK] = ACTIONS(703), + [anon_sym_RPAREN] = ACTIONS(703), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(694), + [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(682), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(696), + [sym_undefined] = ACTIONS(540), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(686), - [anon_sym_get] = ACTIONS(686), - [anon_sym_set] = ACTIONS(686), + [anon_sym_static] = ACTIONS(532), + [anon_sym_get] = ACTIONS(532), + [anon_sym_set] = ACTIONS(532), [sym_html_comment] = ACTIONS(5), }, [86] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(686), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1139), - [sym_assignment_pattern] = STATE(1261), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1139), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(459), - [sym_subscript_expression] = STATE(459), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1139), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1684), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [sym_pattern] = STATE(1237), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(568), - [anon_sym_export] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1172), + [sym_assignment_pattern] = STATE(1516), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1172), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(457), + [sym_subscript_expression] = STATE(457), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1172), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [sym_pattern] = STATE(1259), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(689), + [anon_sym_export] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_COMMA] = ACTIONS(705), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(570), + [anon_sym_let] = ACTIONS(691), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(701), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_RBRACK] = ACTIONS(705), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(576), + [anon_sym_async] = ACTIONS(699), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(682), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(578), + [sym_undefined] = ACTIONS(701), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(570), - [anon_sym_get] = ACTIONS(570), - [anon_sym_set] = ACTIONS(570), + [anon_sym_static] = ACTIONS(691), + [anon_sym_get] = ACTIONS(691), + [anon_sym_set] = ACTIONS(691), [sym_html_comment] = ACTIONS(5), }, [87] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(680), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_spread_element] = STATE(1337), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [aux_sym_array_repeat1] = STATE(1338), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_COMMA] = ACTIONS(705), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1172), + [sym_assignment_pattern] = STATE(1422), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1172), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(457), + [sym_subscript_expression] = STATE(457), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1172), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [sym_pattern] = STATE(1315), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(689), + [anon_sym_export] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(691), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_RPAREN] = ACTIONS(707), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(695), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(699), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(682), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(701), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(691), + [anon_sym_get] = ACTIONS(691), + [anon_sym_set] = ACTIONS(691), [sym_html_comment] = ACTIONS(5), }, [88] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(690), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_spread_element] = STATE(1282), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_spread_element] = STATE(1298), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_array_repeat1] = STATE(1296), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_COMMA] = ACTIONS(709), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), @@ -18226,7 +18254,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_RBRACK] = ACTIONS(711), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), @@ -18235,7 +18262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(713), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), @@ -18263,56 +18290,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [89] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(694), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_spread_element] = STATE(1297), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [aux_sym_array_repeat1] = STATE(1298), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1172), + [sym_assignment_pattern] = STATE(1324), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1172), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(457), + [sym_subscript_expression] = STATE(457), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1172), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [sym_pattern] = STATE(1209), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(689), + [anon_sym_export] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(691), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(703), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(695), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(682), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(701), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(691), + [anon_sym_get] = ACTIONS(691), + [anon_sym_set] = ACTIONS(691), + [sym_html_comment] = ACTIONS(5), + }, + [90] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(689), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_spread_element] = STATE(1258), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(715), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(715), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_RBRACK] = ACTIONS(715), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), @@ -18321,7 +18434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(713), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), @@ -18348,226 +18461,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [90] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(827), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1157), - [sym_assignment_pattern] = STATE(1556), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1157), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(461), - [sym_subscript_expression] = STATE(461), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1157), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [sym_pattern] = STATE(1344), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(684), - [anon_sym_export] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(686), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(690), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(694), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(696), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(686), - [anon_sym_get] = ACTIONS(686), - [anon_sym_set] = ACTIONS(686), - [sym_html_comment] = ACTIONS(5), - }, [91] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(827), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1157), - [sym_assignment_pattern] = STATE(1261), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1157), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(461), - [sym_subscript_expression] = STATE(461), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1157), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [sym_pattern] = STATE(1237), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(684), - [anon_sym_export] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(688), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(672), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_spread_element] = STATE(1338), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_array_repeat1] = STATE(1337), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_COMMA] = ACTIONS(709), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(686), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(701), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(694), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(696), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(686), - [anon_sym_get] = ACTIONS(686), - [anon_sym_set] = ACTIONS(686), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, [92] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(729), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_spread_element] = STATE(1335), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [aux_sym_array_repeat1] = STATE(1336), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(698), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_spread_element] = STATE(1275), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_array_repeat1] = STATE(1277), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_COMMA] = ACTIONS(709), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(719), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(376), @@ -18579,7 +18606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(713), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), @@ -18607,235 +18634,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [93] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(827), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1157), - [sym_assignment_pattern] = STATE(1556), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1157), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(461), - [sym_subscript_expression] = STATE(461), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1157), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [sym_pattern] = STATE(1344), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(684), - [anon_sym_export] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(688), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1172), + [sym_assignment_pattern] = STATE(1422), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1172), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(457), + [sym_subscript_expression] = STATE(457), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1172), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [sym_pattern] = STATE(1315), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(689), + [anon_sym_export] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(686), + [anon_sym_let] = ACTIONS(691), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(719), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(695), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(694), + [anon_sym_async] = ACTIONS(699), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(682), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(696), + [sym_undefined] = ACTIONS(701), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(686), - [anon_sym_get] = ACTIONS(686), - [anon_sym_set] = ACTIONS(686), + [anon_sym_static] = ACTIONS(691), + [anon_sym_get] = ACTIONS(691), + [anon_sym_set] = ACTIONS(691), [sym_html_comment] = ACTIONS(5), }, [94] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(762), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1139), - [sym_assignment_pattern] = STATE(1423), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1139), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(459), - [sym_subscript_expression] = STATE(459), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1139), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [sym_pattern] = STATE(1325), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(568), - [anon_sym_export] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1172), + [sym_assignment_pattern] = STATE(1454), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1172), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(457), + [sym_subscript_expression] = STATE(457), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1172), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [sym_pattern] = STATE(1304), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(689), + [anon_sym_export] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(570), + [anon_sym_let] = ACTIONS(691), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(695), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(576), + [anon_sym_async] = ACTIONS(699), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(682), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(578), + [sym_undefined] = ACTIONS(701), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(570), - [anon_sym_get] = ACTIONS(570), - [anon_sym_set] = ACTIONS(570), + [anon_sym_static] = ACTIONS(691), + [anon_sym_get] = ACTIONS(691), + [anon_sym_set] = ACTIONS(691), [sym_html_comment] = ACTIONS(5), }, [95] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(746), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_spread_element] = STATE(1638), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1638), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(721), + [sym_import] = STATE(1117), + [sym_expression_statement] = STATE(102), + [sym_empty_statement] = STATE(102), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), + [sym_html_comment] = ACTIONS(5), + }, + [96] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(767), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1164), + [sym_assignment_pattern] = STATE(1454), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1164), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(458), + [sym_subscript_expression] = STATE(458), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1164), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [sym_pattern] = STATE(1304), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(530), + [anon_sym_export] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(532), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(538), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(682), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), @@ -18855,138 +18967,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), - [sym_html_comment] = ACTIONS(5), - }, - [96] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(827), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1157), - [sym_assignment_pattern] = STATE(1556), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1157), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(461), - [sym_subscript_expression] = STATE(461), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1157), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [sym_pattern] = STATE(1344), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(684), - [anon_sym_export] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(686), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(690), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(694), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(696), + [sym_undefined] = ACTIONS(540), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(686), - [anon_sym_get] = ACTIONS(686), - [anon_sym_set] = ACTIONS(686), + [anon_sym_static] = ACTIONS(532), + [anon_sym_get] = ACTIONS(532), + [anon_sym_set] = ACTIONS(532), [sym_html_comment] = ACTIONS(5), }, [97] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(682), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_spread_element] = STATE(1679), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1679), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(724), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_spread_element] = STATE(1685), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_sequence_expression] = STATE(1685), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -19005,7 +19032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(713), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), @@ -19033,135 +19060,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [98] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(827), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1157), - [sym_assignment_pattern] = STATE(1423), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1157), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(461), - [sym_subscript_expression] = STATE(461), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1157), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [sym_pattern] = STATE(1325), - [sym_rest_pattern] = STATE(1142), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(684), - [anon_sym_export] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(688), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(664), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_spread_element] = STATE(1633), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_sequence_expression] = STATE(1633), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(686), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(690), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(694), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(680), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(696), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(686), - [anon_sym_get] = ACTIONS(686), - [anon_sym_set] = ACTIONS(686), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, [99] = { - [sym_import] = STATE(1095), - [sym_expression_statement] = STATE(102), - [sym_empty_statement] = STATE(102), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_import] = STATE(1117), + [sym_expression_statement] = STATE(104), + [sym_empty_statement] = STATE(104), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(604), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1535), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), + [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), @@ -19172,9 +19199,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -19203,63 +19230,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [100] = { - [sym_import] = STATE(1095), - [sym_expression_statement] = STATE(103), - [sym_empty_statement] = STATE(103), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1172), + [sym_assignment_pattern] = STATE(1422), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1172), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1443), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(457), + [sym_subscript_expression] = STATE(457), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1172), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [sym_pattern] = STATE(1315), + [sym_rest_pattern] = STATE(1175), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(689), + [anon_sym_export] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(691), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(695), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(682), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(701), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(691), + [anon_sym_get] = ACTIONS(691), + [anon_sym_set] = ACTIONS(691), + [sym_html_comment] = ACTIONS(5), + }, + [101] = { + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(646), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1457), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), + [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(727), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -19285,214 +19395,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(414), [anon_sym_get] = ACTIONS(414), [anon_sym_set] = ACTIONS(414), + [sym__automatic_semicolon] = ACTIONS(727), [sym_html_comment] = ACTIONS(5), }, - [101] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(584), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [102] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(747), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1593), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(725), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym__automatic_semicolon] = ACTIONS(725), - [sym_html_comment] = ACTIONS(5), - }, - [102] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(661), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1608), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), - [sym_html_comment] = ACTIONS(5), - }, - [103] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(726), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), [sym_sequence_expression] = STATE(1627), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -19537,44 +19481,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [104] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(827), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1322), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1322), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1322), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), + [103] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(477), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1286), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1286), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(477), + [sym_subscript_expression] = STATE(477), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1286), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(731), [anon_sym_export] = ACTIONS(733), [anon_sym_LBRACE] = ACTIONS(735), @@ -19583,8 +19527,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(739), [anon_sym_const] = ACTIONS(741), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), [anon_sym_LBRACK] = ACTIONS(743), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), @@ -19593,97 +19537,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(386), [anon_sym_async] = ACTIONS(745), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(747), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(733), - [anon_sym_get] = ACTIONS(733), - [anon_sym_set] = ACTIONS(733), - [sym_html_comment] = ACTIONS(5), - }, - [105] = { - [sym_import] = STATE(1085), - [sym_statement_block] = STATE(566), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(820), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), [anon_sym_BANG] = ACTIONS(474), [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), [anon_sym_PLUS_PLUS] = ACTIONS(476), [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), @@ -19695,222 +19557,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [sym_undefined] = ACTIONS(747), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(733), + [anon_sym_get] = ACTIONS(733), + [anon_sym_set] = ACTIONS(733), [sym_html_comment] = ACTIONS(5), }, - [106] = { - [sym_import] = STATE(1095), - [sym_statement_block] = STATE(725), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(597), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [104] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(725), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [107] = { - [sym_import] = STATE(1085), - [sym_statement_block] = STATE(513), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(514), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(753), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), - [sym_html_comment] = ACTIONS(5), - }, - [108] = { - [sym_import] = STATE(1085), - [sym_statement_block] = STATE(531), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(532), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_sequence_expression] = STATE(1663), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(749), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(376), @@ -19948,130 +19647,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [109] = { - [sym_import] = STATE(1085), - [sym_statement_block] = STATE(551), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(552), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(753), + [105] = { + [sym_import] = STATE(1107), + [sym_statement_block] = STATE(549), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(751), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [110] = { - [sym_import] = STATE(1085), - [sym_statement_block] = STATE(563), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(564), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [106] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(683), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_sequence_expression] = STATE(1693), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), @@ -20112,48 +19811,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [111] = { - [sym_import] = STATE(1085), - [sym_statement_block] = STATE(566), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(567), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [107] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(723), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_sequence_expression] = STATE(1686), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), @@ -20194,295 +19893,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [112] = { - [sym_import] = STATE(1085), - [sym_statement_block] = STATE(568), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(569), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(753), + [108] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(482), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(488), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(753), + [anon_sym_export] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(755), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(757), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(759), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(755), + [anon_sym_get] = ACTIONS(755), + [anon_sym_set] = ACTIONS(755), [sym_html_comment] = ACTIONS(5), }, - [113] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(735), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1668), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [109] = { + [sym_import] = STATE(1107), + [sym_statement_block] = STATE(537), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(791), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(751), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [114] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(706), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1619), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [110] = { + [sym_import] = STATE(1107), + [sym_statement_block] = STATE(491), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(803), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(751), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [115] = { - [sym_import] = STATE(1095), - [sym_statement_block] = STATE(721), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(635), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), + [111] = { + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(623), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_sequence_expression] = STATE(1459), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_import] = ACTIONS(366), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), @@ -20492,9 +20191,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -20522,294 +20221,458 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [116] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(738), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1685), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [112] = { + [sym_import] = STATE(1117), + [sym_statement_block] = STATE(715), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(609), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [117] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(827), - [sym_primary_expression] = STATE(482), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(488), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(755), - [anon_sym_export] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(362), + [113] = { + [sym_import] = STATE(1107), + [sym_statement_block] = STATE(536), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(815), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(751), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(757), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(488), [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(759), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(761), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), + [anon_sym_new] = ACTIONS(494), [anon_sym_PLUS] = ACTIONS(496), [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), [anon_sym_typeof] = ACTIONS(496), [anon_sym_void] = ACTIONS(496), [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(757), - [anon_sym_get] = ACTIONS(757), - [anon_sym_set] = ACTIONS(757), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [118] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(734), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1622), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [114] = { + [sym_import] = STATE(1117), + [sym_statement_block] = STATE(753), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(599), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), + [sym_html_comment] = ACTIONS(5), + }, + [115] = { + [sym_import] = STATE(1107), + [sym_statement_block] = STATE(532), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(780), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(751), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [119] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(749), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1650), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [116] = { + [sym_import] = STATE(1117), + [sym_statement_block] = STATE(670), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(621), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), + [sym_html_comment] = ACTIONS(5), + }, + [117] = { + [sym_import] = STATE(1107), + [sym_statement_block] = STATE(524), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(523), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(763), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), @@ -20850,705 +20713,623 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [120] = { - [sym_import] = STATE(1085), - [sym_statement_block] = STATE(513), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(773), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [118] = { + [sym_import] = STATE(1117), + [sym_statement_block] = STATE(705), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(615), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [121] = { - [sym_import] = STATE(1085), - [sym_statement_block] = STATE(531), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(777), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [119] = { + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(826), + [sym_primary_expression] = STATE(605), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(601), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(765), + [anon_sym_export] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(767), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(771), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(773), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(767), + [anon_sym_get] = ACTIONS(767), + [anon_sym_set] = ACTIONS(767), [sym_html_comment] = ACTIONS(5), }, - [122] = { - [sym_import] = STATE(1085), - [sym_statement_block] = STATE(551), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(766), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [120] = { + [sym_import] = STATE(1117), + [sym_statement_block] = STATE(704), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(606), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [123] = { - [sym_import] = STATE(1085), - [sym_statement_block] = STATE(563), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [121] = { + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(826), + [sym_primary_expression] = STATE(605), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(601), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(775), + [anon_sym_export] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(779), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(773), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(777), + [anon_sym_get] = ACTIONS(777), + [anon_sym_set] = ACTIONS(777), [sym_html_comment] = ACTIONS(5), }, - [124] = { - [sym_import] = STATE(1085), - [sym_statement_block] = STATE(566), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(768), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(749), + [122] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(656), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_sequence_expression] = STATE(1632), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [125] = { - [sym_import] = STATE(1085), - [sym_statement_block] = STATE(568), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(769), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(749), + [123] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(660), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_sequence_expression] = STATE(1666), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [126] = { - [sym_import] = STATE(1095), - [sym_statement_block] = STATE(741), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(601), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [124] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(676), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [127] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(827), - [sym_primary_expression] = STATE(482), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(488), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_sequence_expression] = STATE(1668), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(759), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [128] = { - [sym_import] = STATE(1095), - [sym_statement_block] = STATE(751), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(652), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), + [125] = { + [sym_import] = STATE(1117), + [sym_statement_block] = STATE(753), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(586), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_import] = ACTIONS(366), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), @@ -21558,9 +21339,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -21588,45 +21369,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [129] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(711), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1690), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [126] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(722), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_sequence_expression] = STATE(1659), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -21670,127 +21451,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [130] = { - [sym_import] = STATE(1095), - [sym_statement_block] = STATE(666), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(606), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [127] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [131] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(678), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1666), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_sequence_expression] = STATE(1658), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -21834,130 +21533,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [132] = { - [sym_import] = STATE(1095), - [sym_statement_block] = STATE(725), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(613), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [128] = { + [sym_import] = STATE(1107), + [sym_statement_block] = STATE(491), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(522), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [sym_html_comment] = ACTIONS(5), - }, - [133] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(696), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1621), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(763), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), @@ -21998,127 +21615,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [134] = { - [sym_import] = STATE(1095), - [sym_statement_block] = STATE(721), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(616), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [129] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(708), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [sym_html_comment] = ACTIONS(5), - }, - [135] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(681), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1670), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_sequence_expression] = STATE(1676), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -22162,376 +21697,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [136] = { - [sym_import] = STATE(1095), - [sym_statement_block] = STATE(751), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(630), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [sym_html_comment] = ACTIONS(5), - }, - [137] = { - [sym_import] = STATE(1095), - [sym_statement_block] = STATE(737), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(632), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [sym_html_comment] = ACTIONS(5), - }, - [138] = { - [sym_import] = STATE(1095), - [sym_statement_block] = STATE(741), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(633), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [130] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(714), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(751), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_sequence_expression] = STATE(1655), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [139] = { - [sym_import] = STATE(1095), - [sym_statement_block] = STATE(666), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(634), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [131] = { + [sym_import] = STATE(1107), + [sym_statement_block] = STATE(537), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(527), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [sym_html_comment] = ACTIONS(5), - }, - [140] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(683), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1651), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(763), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), @@ -22572,127 +21861,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [141] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(651), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_sequence_expression] = STATE(1359), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), + [132] = { + [sym_import] = STATE(1117), + [sym_statement_block] = STATE(718), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(653), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [142] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(689), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1609), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [133] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_sequence_expression] = STATE(1673), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -22736,48 +22025,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [143] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1654), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [134] = { + [sym_import] = STATE(1107), + [sym_statement_block] = STATE(549), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(539), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(763), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), @@ -22818,234 +22107,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [144] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(836), - [sym_primary_expression] = STATE(585), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(587), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(763), - [anon_sym_export] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(767), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(769), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(502), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(771), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(765), - [anon_sym_get] = ACTIONS(765), - [anon_sym_set] = ACTIONS(765), - [sym_html_comment] = ACTIONS(5), - }, - [145] = { - [sym_import] = STATE(1095), - [sym_statement_block] = STATE(737), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [135] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(482), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [146] = { - [sym_import] = STATE(1085), - [sym_statement_block] = STATE(513), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(802), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(749), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(488), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(781), + [anon_sym_export] = ACTIONS(783), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), + [anon_sym_let] = ACTIONS(783), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(757), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), + [anon_sym_async] = ACTIONS(785), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(474), [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), [anon_sym_PLUS_PLUS] = ACTIONS(476), [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), @@ -23059,75 +22184,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(408), [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(783), + [anon_sym_get] = ACTIONS(783), + [anon_sym_set] = ACTIONS(783), [sym_html_comment] = ACTIONS(5), }, - [147] = { - [sym_import] = STATE(1085), - [sym_statement_block] = STATE(531), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(805), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(749), + [136] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(482), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(488), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(757), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(474), [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), [anon_sym_PLUS_PLUS] = ACTIONS(476), [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), @@ -23141,214 +22266,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(408), [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [148] = { - [sym_import] = STATE(1085), - [sym_statement_block] = STATE(551), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(818), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [137] = { + [sym_import] = STATE(1117), + [sym_statement_block] = STATE(704), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(616), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [149] = { - [sym_import] = STATE(1085), - [sym_statement_block] = STATE(563), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(819), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(749), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [138] = { + [sym_import] = STATE(1117), + [sym_statement_block] = STATE(705), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(635), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [150] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(710), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1656), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [139] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(749), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_sequence_expression] = STATE(1671), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -23392,371 +22517,455 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [151] = { - [sym_import] = STATE(1085), - [sym_statement_block] = STATE(568), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(821), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(749), + [140] = { + [sym_import] = STATE(1117), + [sym_statement_block] = STATE(670), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(590), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), + [sym_html_comment] = ACTIONS(5), + }, + [141] = { + [sym_import] = STATE(1107), + [sym_statement_block] = STATE(532), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(824), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(751), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [152] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(827), - [sym_primary_expression] = STATE(482), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(488), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(773), - [anon_sym_export] = ACTIONS(775), - [anon_sym_LBRACE] = ACTIONS(458), + [142] = { + [sym_import] = STATE(1107), + [sym_statement_block] = STATE(524), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(800), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(751), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(775), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(488), [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(759), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(777), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), + [anon_sym_new] = ACTIONS(494), [anon_sym_PLUS] = ACTIONS(496), [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), [anon_sym_typeof] = ACTIONS(496), [anon_sym_void] = ACTIONS(496), [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(775), - [anon_sym_get] = ACTIONS(775), - [anon_sym_set] = ACTIONS(775), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [153] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(836), - [sym_primary_expression] = STATE(585), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(587), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(779), - [anon_sym_export] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(781), + [143] = { + [sym_import] = STATE(1117), + [sym_statement_block] = STATE(715), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(629), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(767), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(783), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(87), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(771), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [154] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(787), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [144] = { + [sym_import] = STATE(1107), + [sym_statement_block] = STATE(536), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(759), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(751), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [155] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(540), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [145] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(661), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_sequence_expression] = STATE(1646), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -23800,290 +23009,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [156] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(541), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [146] = { + [sym_import] = STATE(1107), + [sym_statement_block] = STATE(549), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(760), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(751), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [157] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(542), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [147] = { + [sym_import] = STATE(1107), + [sym_statement_block] = STATE(537), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(762), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(751), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [158] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(543), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [148] = { + [sym_import] = STATE(1107), + [sym_statement_block] = STATE(524), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(786), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(751), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [159] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(544), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [149] = { + [sym_import] = STATE(1107), + [sym_statement_block] = STATE(536), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(496), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(763), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), @@ -24124,128 +23337,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [160] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(545), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [150] = { + [sym_import] = STATE(1107), + [sym_statement_block] = STATE(491), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(764), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(751), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [161] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(546), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [151] = { + [sym_import] = STATE(1107), + [sym_statement_block] = STATE(532), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(533), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(763), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), @@ -24286,44 +23501,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [162] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(594), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [152] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(732), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_sequence_expression] = STATE(1630), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -24367,129 +23583,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [163] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), - [sym_html_comment] = ACTIONS(5), - }, - [164] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(494), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), + [153] = { + [sym_import] = STATE(1117), + [sym_statement_block] = STATE(718), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(610), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), @@ -24499,9 +23635,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -24529,125 +23665,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [165] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(780), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [154] = { + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(638), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [166] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(490), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [155] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(479), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -24691,53 +23827,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [167] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(797), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), + [156] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(822), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(488), [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), @@ -24748,482 +23884,563 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(494), [anon_sym_PLUS] = ACTIONS(496), [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), [anon_sym_typeof] = ACTIONS(496), [anon_sym_void] = ACTIONS(496), [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(484), [anon_sym_get] = ACTIONS(484), [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [168] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(590), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), + [157] = { + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(630), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [169] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(782), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [158] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(817), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [170] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(631), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [159] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(797), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_let] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(492), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(504), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [171] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(637), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [160] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(804), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), + [anon_sym_let] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(492), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(504), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(506), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), + [sym_html_comment] = ACTIONS(5), + }, + [161] = { + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(628), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [172] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(481), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [162] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(802), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [173] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(824), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), + [163] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(798), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(488), [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), @@ -25234,1211 +24451,563 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(494), [anon_sym_PLUS] = ACTIONS(496), [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), [anon_sym_typeof] = ACTIONS(496), [anon_sym_void] = ACTIONS(496), [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(484), [anon_sym_get] = ACTIONS(484), [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [174] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(638), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [164] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(480), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_let] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(468), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [175] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(733), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [165] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(787), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [176] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(762), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [177] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(640), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [166] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(814), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_let] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(492), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(504), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [178] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(641), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), + [167] = { + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(626), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [179] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(642), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [168] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(812), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_let] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(468), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [180] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(643), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [169] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(480), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [181] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(644), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [182] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(593), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [sym_html_comment] = ACTIONS(5), - }, - [183] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(645), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [184] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(646), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [185] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(647), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [186] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(648), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_let] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(492), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(504), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [187] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(649), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [170] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(481), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [188] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(480), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(488), [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), @@ -26449,77 +25018,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(494), [anon_sym_PLUS] = ACTIONS(496), [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), [anon_sym_typeof] = ACTIONS(496), [anon_sym_void] = ACTIONS(496), [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(484), [anon_sym_get] = ACTIONS(484), [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [189] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(478), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), + [171] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(799), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(488), [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), @@ -26530,77 +25099,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(494), [anon_sym_PLUS] = ACTIONS(496), [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), [anon_sym_typeof] = ACTIONS(496), [anon_sym_void] = ACTIONS(496), [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(484), [anon_sym_get] = ACTIONS(484), [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [190] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(772), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), + [172] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(810), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(468), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), + [sym_html_comment] = ACTIONS(5), + }, + [173] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(788), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(488), [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), @@ -26611,77 +25261,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(494), [anon_sym_PLUS] = ACTIONS(496), [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), [anon_sym_typeof] = ACTIONS(496), [anon_sym_void] = ACTIONS(496), [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(484), [anon_sym_get] = ACTIONS(484), [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [191] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(774), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), + [174] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(790), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(488), [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), @@ -26692,77 +25342,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(494), [anon_sym_PLUS] = ACTIONS(496), [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), [anon_sym_typeof] = ACTIONS(496), [anon_sym_void] = ACTIONS(496), [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(484), [anon_sym_get] = ACTIONS(484), [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [192] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(775), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), + [175] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(481), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(468), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), + [sym_html_comment] = ACTIONS(5), + }, + [176] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(574), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [177] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(820), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(488), [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), @@ -26773,72 +25585,1368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(494), [anon_sym_PLUS] = ACTIONS(496), [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), [anon_sym_typeof] = ACTIONS(496), [anon_sym_void] = ACTIONS(496), [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(484), [anon_sym_get] = ACTIONS(484), [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [193] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(581), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), + [178] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(562), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [179] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(561), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [180] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(559), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [181] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(558), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [182] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(557), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [183] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(555), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [184] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(554), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [185] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(553), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [186] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(548), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [187] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(546), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [188] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(545), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [189] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(543), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [190] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(534), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [191] = { + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(640), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), + [sym_html_comment] = ACTIONS(5), + }, + [192] = { + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(622), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), + [sym_html_comment] = ACTIONS(5), + }, + [193] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(530), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [194] = { + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(594), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), + [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), @@ -26848,9 +26956,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -26878,458 +26986,377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [194] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(778), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), - [sym_html_comment] = ACTIONS(5), - }, [195] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(781), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(649), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(783), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(602), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, [197] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(784), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(607), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, [198] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(786), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1139), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1139), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(456), + [sym_subscript_expression] = STATE(456), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1139), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(787), + [anon_sym_export] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(693), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(789), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(695), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(791), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(793), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(789), + [anon_sym_get] = ACTIONS(789), + [anon_sym_set] = ACTIONS(789), [sym_html_comment] = ACTIONS(5), }, [199] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(756), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(488), [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), @@ -27340,24 +27367,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(494), [anon_sym_PLUS] = ACTIONS(496), [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), [anon_sym_typeof] = ACTIONS(496), [anon_sym_void] = ACTIONS(496), [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(484), [anon_sym_get] = ACTIONS(484), @@ -27365,133 +27392,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [200] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(757), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(504), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, [201] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(759), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(792), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(488), [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), @@ -27502,24 +27529,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(494), [anon_sym_PLUS] = ACTIONS(496), [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), [anon_sym_typeof] = ACTIONS(496), [anon_sym_void] = ACTIONS(496), [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(484), [anon_sym_get] = ACTIONS(484), @@ -27527,371 +27554,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [202] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(760), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(631), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, [203] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(763), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(512), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, [204] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(764), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(819), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, [205] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(765), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(596), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, [206] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(596), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(745), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), + [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), @@ -27901,9 +27928,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -27932,52 +27959,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [207] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(770), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(795), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(488), [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), @@ -27988,24 +28015,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(494), [anon_sym_PLUS] = ACTIONS(496), [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), [anon_sym_typeof] = ACTIONS(496), [anon_sym_void] = ACTIONS(496), [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(484), [anon_sym_get] = ACTIONS(484), @@ -28013,128 +28040,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [208] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(481), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(793), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, [209] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(650), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(603), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), + [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), @@ -28144,9 +28171,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -28175,128 +28202,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [210] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(827), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1159), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1159), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(462), - [sym_subscript_expression] = STATE(462), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1159), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(785), - [anon_sym_export] = ACTIONS(787), - [anon_sym_LBRACE] = ACTIONS(688), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(690), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(789), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(611), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(791), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(787), - [anon_sym_get] = ACTIONS(787), - [anon_sym_set] = ACTIONS(787), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, [211] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(599), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(647), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), + [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), @@ -28306,9 +28333,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -28337,128 +28364,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [212] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(796), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(644), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, [213] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(588), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(643), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), + [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), @@ -28468,9 +28495,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -28499,47 +28526,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [214] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(589), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(642), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), + [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), @@ -28549,9 +28576,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -28580,128 +28607,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [215] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(586), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1211), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1211), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(468), - [sym_subscript_expression] = STATE(468), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1211), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(793), - [anon_sym_export] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(797), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(637), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(799), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(795), - [anon_sym_get] = ACTIONS(795), - [anon_sym_set] = ACTIONS(795), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, [216] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(493), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(634), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), + [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), @@ -28711,9 +28738,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -28742,47 +28769,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [217] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(708), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(627), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), + [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), @@ -28792,9 +28819,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -28823,538 +28850,619 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [218] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(494), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(625), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), + [sym_private_property_identifier] = ACTIONS(87), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, [219] = { - [sym_import] = STATE(1095), + [sym_import] = STATE(1117), [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(612), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), + [sym_expression] = STATE(648), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), [sym_member_expression] = STATE(460), [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, [220] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(586), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(807), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, [221] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(614), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(818), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(418), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_let] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(468), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, [222] = { - [sym_import] = STATE(1095), + [sym_import] = STATE(1117), [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(615), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), + [sym_expression] = STATE(618), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), [sym_member_expression] = STATE(460), [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, [223] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(617), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(734), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), + [sym_private_property_identifier] = ACTIONS(87), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, [224] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(793), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(766), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(468), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), + [sym_html_comment] = ACTIONS(5), + }, + [225] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(789), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(488), [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), @@ -29365,1040 +29473,878 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(494), [anon_sym_PLUS] = ACTIONS(496), [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), [anon_sym_typeof] = ACTIONS(496), [anon_sym_void] = ACTIONS(496), [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(484), [anon_sym_get] = ACTIONS(484), [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [225] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(618), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [sym_html_comment] = ACTIONS(5), - }, [226] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(619), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(525), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(418), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, [227] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(620), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(624), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), + [sym_private_property_identifier] = ACTIONS(87), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, [228] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(621), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(816), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(418), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_let] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(492), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(504), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, [229] = { - [sym_import] = STATE(1095), + [sym_import] = STATE(1117), [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(622), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), + [sym_expression] = STATE(619), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), [sym_member_expression] = STATE(460), [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, [230] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(623), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(801), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(418), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, [231] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(624), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(480), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(418), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, [232] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(625), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(481), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(418), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, [233] = { - [sym_import] = STATE(1095), + [sym_import] = STATE(1117), [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(626), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), [sym_member_expression] = STATE(460), [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, [234] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(627), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(540), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), + [sym_private_property_identifier] = ACTIONS(87), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, [235] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(628), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(494), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(418), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, [236] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(629), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(588), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), - [sym_html_comment] = ACTIONS(5), - }, - [237] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(794), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -30442,48 +30388,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [238] = { - [sym_import] = STATE(1095), - [sym_parenthesized_expression] = STATE(458), - [sym_expression] = STATE(610), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1640), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1640), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(998), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1640), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1642), - [aux_sym_export_statement_repeat1] = STATE(1195), + [237] = { + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(541), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), + [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(35), @@ -30493,9 +30439,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(422), - [anon_sym_function] = ACTIONS(424), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -30523,798 +30469,879 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, + [238] = { + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(633), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), + [sym_html_comment] = ACTIONS(5), + }, [239] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(480), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(608), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, [240] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(478), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(479), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, [241] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(512), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(636), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, [242] = { - [sym_import] = STATE(1095), + [sym_import] = STATE(1117), [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(636), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), + [sym_expression] = STATE(651), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), [sym_member_expression] = STATE(460), [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, [243] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(795), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(785), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, [244] = { - [sym_import] = STATE(1095), + [sym_import] = STATE(1117), [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(581), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), + [sym_expression] = STATE(597), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), [sym_member_expression] = STATE(460), [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, [245] = { - [sym_import] = STATE(1095), + [sym_import] = STATE(1117), [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(493), - [sym_primary_expression] = STATE(687), - [sym_yield_expression] = STATE(688), - [sym_object] = STATE(713), - [sym_object_pattern] = STATE(1664), - [sym_array] = STATE(713), - [sym_array_pattern] = STATE(1664), - [sym_glimmer_template] = STATE(688), - [sym_jsx_element] = STATE(688), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(688), - [sym_class] = STATE(713), - [sym_function_expression] = STATE(713), - [sym_generator_function] = STATE(713), - [sym_arrow_function] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_new_expression] = STATE(688), - [sym_await_expression] = STATE(688), + [sym_expression] = STATE(591), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), [sym_member_expression] = STATE(460), [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(688), - [sym__augmented_assignment_lhs] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(688), - [sym__destructuring_pattern] = STATE(1664), - [sym_ternary_expression] = STATE(688), - [sym_binary_expression] = STATE(688), - [sym_unary_expression] = STATE(688), - [sym_update_expression] = STATE(688), - [sym_string] = STATE(713), - [sym_template_string] = STATE(713), - [sym_regex] = STATE(713), - [sym_meta_property] = STATE(713), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1665), - [aux_sym_export_statement_repeat1] = STATE(1195), - [sym_identifier] = ACTIONS(426), - [anon_sym_export] = ACTIONS(428), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(428), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(432), - [anon_sym_yield] = ACTIONS(434), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(420), - [anon_sym_async] = ACTIONS(436), - [anon_sym_function] = ACTIONS(424), - [anon_sym_new] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(444), - [anon_sym_typeof] = ACTIONS(440), - [anon_sym_void] = ACTIONS(440), - [anon_sym_delete] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(448), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(450), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(428), - [anon_sym_get] = ACTIONS(428), - [anon_sym_set] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, [246] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(519), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(639), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, [247] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(480), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(541), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, [248] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(478), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(782), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(474), [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), [anon_sym_PLUS_PLUS] = ACTIONS(476), [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), @@ -31328,130 +31355,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(408), [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, [249] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(801), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(479), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, [250] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(530), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -31496,149 +31523,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [251] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(803), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(781), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, [252] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(804), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(794), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(474), [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), [anon_sym_PLUS_PLUS] = ACTIONS(476), [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), @@ -31652,74 +31679,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(408), [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, [253] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(806), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(779), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(474), [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), [anon_sym_PLUS_PLUS] = ACTIONS(476), [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), @@ -31733,641 +31760,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(408), [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, [254] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(807), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(476), + [sym_expression] = STATE(813), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1696), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1696), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(476), + [sym_subscript_expression] = STATE(476), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1010), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1696), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1679), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, [255] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(808), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), - [sym_html_comment] = ACTIONS(5), - }, - [256] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(809), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), - [sym_html_comment] = ACTIONS(5), - }, - [257] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(810), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), - [sym_html_comment] = ACTIONS(5), - }, - [258] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(811), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), - [sym_html_comment] = ACTIONS(5), - }, - [259] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(812), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), - [sym_html_comment] = ACTIONS(5), - }, - [260] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(813), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(588), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1223), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1223), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(466), + [sym_subscript_expression] = STATE(466), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1223), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(795), + [anon_sym_export] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), + [anon_sym_let] = ACTIONS(797), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), + [anon_sym_async] = ACTIONS(799), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [sym_undefined] = ACTIONS(801), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(797), + [anon_sym_get] = ACTIONS(797), + [anon_sym_set] = ACTIONS(797), [sym_html_comment] = ACTIONS(5), }, - [261] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(814), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), + [256] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(778), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(474), [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), [anon_sym_PLUS_PLUS] = ACTIONS(476), [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), @@ -32381,74 +32003,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(408), [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [262] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(788), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), + [257] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(777), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(474), [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), [anon_sym_PLUS_PLUS] = ACTIONS(476), [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), @@ -32462,74 +32084,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(408), [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [263] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(815), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), + [258] = { + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(584), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), + [sym_html_comment] = ACTIONS(5), + }, + [259] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(776), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(474), [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), [anon_sym_PLUS_PLUS] = ACTIONS(476), [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), @@ -32543,74 +32246,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(408), [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [264] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(816), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), + [260] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(775), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(474), [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), [anon_sym_PLUS_PLUS] = ACTIONS(476), [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), @@ -32624,74 +32327,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(408), [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [265] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(817), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), + [261] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(774), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(474), [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), [anon_sym_PLUS_PLUS] = ACTIONS(476), [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), @@ -32705,49 +32408,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(408), [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [266] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(533), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [262] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(821), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -32791,125 +32494,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [267] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(535), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [263] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [268] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(536), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [264] = { + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(612), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), + [sym_html_comment] = ACTIONS(5), + }, + [265] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(783), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -32953,44 +32737,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [269] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(537), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), + [266] = { + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(589), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), + [sym_html_comment] = ACTIONS(5), + }, + [267] = { + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(463), + [sym_expression] = STATE(614), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1674), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1674), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1674), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1672), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), + [sym_html_comment] = ACTIONS(5), + }, + [268] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(440), + [sym_expression] = STATE(767), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1661), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1661), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1661), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1215), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -33034,69 +32980,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [270] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(822), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), + [269] = { + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(761), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(474), [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), [anon_sym_PLUS_PLUS] = ACTIONS(476), [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), @@ -33110,74 +33056,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(408), [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), + [sym_html_comment] = ACTIONS(5), + }, + [270] = { + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(540), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, [271] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(481), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1692), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1692), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1009), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1692), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1675), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(452), - [anon_sym_export] = ACTIONS(454), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(763), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(454), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(460), - [anon_sym_yield] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(466), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(468), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(474), [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(470), - [anon_sym_void] = ACTIONS(470), - [anon_sym_delete] = ACTIONS(470), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), [anon_sym_PLUS_PLUS] = ACTIONS(476), [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), @@ -33191,2925 +33218,2848 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(408), [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(454), - [anon_sym_get] = ACTIONS(454), - [anon_sym_set] = ACTIONS(454), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, [272] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(582), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(772), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, [273] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(789), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(768), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, [274] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(539), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(771), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, [275] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(413), - [sym_expression] = STATE(799), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1623), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1623), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(413), - [sym_subscript_expression] = STATE(413), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(997), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1623), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1607), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(458), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(464), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(498), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(500), - [anon_sym_DASH_DASH] = ACTIONS(500), + [sym_import] = STATE(1117), + [sym_parenthesized_expression] = STATE(460), + [sym_expression] = STATE(512), + [sym_primary_expression] = STATE(710), + [sym_yield_expression] = STATE(711), + [sym_object] = STATE(685), + [sym_object_pattern] = STATE(1621), + [sym_array] = STATE(685), + [sym_array_pattern] = STATE(1621), + [sym_glimmer_template] = STATE(711), + [sym_jsx_element] = STATE(711), + [sym_jsx_opening_element] = STATE(1014), + [sym_jsx_self_closing_element] = STATE(711), + [sym_class] = STATE(685), + [sym_function_expression] = STATE(685), + [sym_generator_function] = STATE(685), + [sym_arrow_function] = STATE(685), + [sym_call_expression] = STATE(685), + [sym_new_expression] = STATE(711), + [sym_await_expression] = STATE(711), + [sym_member_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_assignment_expression] = STATE(711), + [sym__augmented_assignment_lhs] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(711), + [sym__destructuring_pattern] = STATE(1621), + [sym_ternary_expression] = STATE(711), + [sym_binary_expression] = STATE(711), + [sym_unary_expression] = STATE(711), + [sym_update_expression] = STATE(711), + [sym_string] = STATE(685), + [sym_template_string] = STATE(685), + [sym_regex] = STATE(685), + [sym_meta_property] = STATE(685), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1604), + [aux_sym_export_statement_repeat1] = STATE(1227), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(502), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(504), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, [276] = { - [sym_import] = STATE(1085), - [sym_parenthesized_expression] = STATE(451), - [sym_expression] = STATE(550), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(502), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(502), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(504), - [sym_jsx_element] = STATE(504), - [sym_jsx_opening_element] = STATE(1013), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(502), - [sym_function_expression] = STATE(502), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_assignment_expression] = STATE(504), - [sym__augmented_assignment_lhs] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(504), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(981), - [sym_formal_parameters] = STATE(1639), - [aux_sym_export_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [sym_import] = STATE(1107), + [sym_parenthesized_expression] = STATE(408), + [sym_expression] = STATE(770), + [sym_primary_expression] = STATE(564), + [sym_yield_expression] = STATE(563), + [sym_object] = STATE(567), + [sym_object_pattern] = STATE(1688), + [sym_array] = STATE(567), + [sym_array_pattern] = STATE(1688), + [sym_glimmer_template] = STATE(563), + [sym_jsx_element] = STATE(563), + [sym_jsx_opening_element] = STATE(1011), + [sym_jsx_self_closing_element] = STATE(563), + [sym_class] = STATE(567), + [sym_function_expression] = STATE(567), + [sym_generator_function] = STATE(567), + [sym_arrow_function] = STATE(567), + [sym_call_expression] = STATE(567), + [sym_new_expression] = STATE(563), + [sym_await_expression] = STATE(563), + [sym_member_expression] = STATE(408), + [sym_subscript_expression] = STATE(408), + [sym_assignment_expression] = STATE(563), + [sym__augmented_assignment_lhs] = STATE(992), + [sym_augmented_assignment_expression] = STATE(563), + [sym__destructuring_pattern] = STATE(1688), + [sym_ternary_expression] = STATE(563), + [sym_binary_expression] = STATE(563), + [sym_unary_expression] = STATE(563), + [sym_update_expression] = STATE(563), + [sym_string] = STATE(567), + [sym_template_string] = STATE(567), + [sym_regex] = STATE(567), + [sym_meta_property] = STATE(567), + [sym_decorator] = STATE(977), + [sym_formal_parameters] = STATE(1660), + [aux_sym_export_statement_repeat1] = STATE(1215), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, [277] = { - [sym_namespace_export] = STATE(1571), - [sym_export_clause] = STATE(1246), - [sym_declaration] = STATE(338), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_class_declaration] = STATE(357), - [sym_function_declaration] = STATE(357), - [sym_generator_function_declaration] = STATE(357), - [sym_decorator] = STATE(981), - [aux_sym_export_statement_repeat1] = STATE(1248), - [aux_sym_object_repeat1] = STATE(1318), - [aux_sym_object_pattern_repeat1] = STATE(1307), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_default] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_var] = ACTIONS(811), - [anon_sym_let] = ACTIONS(813), - [anon_sym_const] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_class] = ACTIONS(825), - [anon_sym_async] = ACTIONS(827), - [anon_sym_function] = ACTIONS(829), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_namespace_export] = STATE(1451), + [sym_export_clause] = STATE(1217), + [sym_declaration] = STATE(365), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_class_declaration] = STATE(363), + [sym_function_declaration] = STATE(363), + [sym_generator_function_declaration] = STATE(363), + [sym_decorator] = STATE(977), + [aux_sym_export_statement_repeat1] = STATE(1213), + [aux_sym_object_repeat1] = STATE(1340), + [aux_sym_object_pattern_repeat1] = STATE(1300), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_default] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(811), + [anon_sym_var] = ACTIONS(813), + [anon_sym_let] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_class] = ACTIONS(827), + [anon_sym_async] = ACTIONS(829), + [anon_sym_function] = ACTIONS(831), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(809), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [278] = { - [sym_namespace_export] = STATE(1571), - [sym_export_clause] = STATE(1246), - [sym_declaration] = STATE(338), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_class_declaration] = STATE(357), - [sym_function_declaration] = STATE(357), - [sym_generator_function_declaration] = STATE(357), - [sym_decorator] = STATE(981), - [aux_sym_export_statement_repeat1] = STATE(1248), - [aux_sym_object_repeat1] = STATE(1318), - [aux_sym_object_pattern_repeat1] = STATE(1307), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_default] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_var] = ACTIONS(811), - [anon_sym_let] = ACTIONS(813), - [anon_sym_const] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_class] = ACTIONS(825), - [anon_sym_async] = ACTIONS(827), - [anon_sym_function] = ACTIONS(829), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_namespace_export] = STATE(1451), + [sym_export_clause] = STATE(1217), + [sym_declaration] = STATE(365), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_class_declaration] = STATE(363), + [sym_function_declaration] = STATE(363), + [sym_generator_function_declaration] = STATE(363), + [sym_decorator] = STATE(977), + [aux_sym_export_statement_repeat1] = STATE(1213), + [aux_sym_object_repeat1] = STATE(1301), + [aux_sym_object_pattern_repeat1] = STATE(1300), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_default] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(837), + [anon_sym_var] = ACTIONS(813), + [anon_sym_let] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_class] = ACTIONS(827), + [anon_sym_async] = ACTIONS(829), + [anon_sym_function] = ACTIONS(831), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(809), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [279] = { - [sym_namespace_export] = STATE(1571), - [sym_export_clause] = STATE(1246), - [sym_declaration] = STATE(338), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_class_declaration] = STATE(357), - [sym_function_declaration] = STATE(357), - [sym_generator_function_declaration] = STATE(357), - [sym_decorator] = STATE(981), - [aux_sym_export_statement_repeat1] = STATE(1248), - [aux_sym_object_repeat1] = STATE(1305), - [aux_sym_object_pattern_repeat1] = STATE(1307), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_default] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_var] = ACTIONS(811), - [anon_sym_let] = ACTIONS(813), - [anon_sym_const] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_class] = ACTIONS(825), - [anon_sym_async] = ACTIONS(827), - [anon_sym_function] = ACTIONS(829), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_namespace_export] = STATE(1451), + [sym_export_clause] = STATE(1217), + [sym_declaration] = STATE(365), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_class_declaration] = STATE(363), + [sym_function_declaration] = STATE(363), + [sym_generator_function_declaration] = STATE(363), + [sym_decorator] = STATE(977), + [aux_sym_export_statement_repeat1] = STATE(1213), + [aux_sym_object_repeat1] = STATE(1340), + [aux_sym_object_pattern_repeat1] = STATE(1300), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_default] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(839), + [anon_sym_var] = ACTIONS(813), + [anon_sym_let] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_class] = ACTIONS(827), + [anon_sym_async] = ACTIONS(829), + [anon_sym_function] = ACTIONS(831), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(809), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [280] = { - [sym_namespace_export] = STATE(1571), - [sym_export_clause] = STATE(1246), - [sym_declaration] = STATE(338), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_class_declaration] = STATE(357), - [sym_function_declaration] = STATE(357), - [sym_generator_function_declaration] = STATE(357), - [sym_decorator] = STATE(981), - [aux_sym_export_statement_repeat1] = STATE(1248), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_default] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_var] = ACTIONS(811), - [anon_sym_let] = ACTIONS(813), - [anon_sym_const] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_class] = ACTIONS(825), - [anon_sym_async] = ACTIONS(827), - [anon_sym_function] = ACTIONS(829), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_namespace_export] = STATE(1451), + [sym_export_clause] = STATE(1217), + [sym_declaration] = STATE(365), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_class_declaration] = STATE(363), + [sym_function_declaration] = STATE(363), + [sym_generator_function_declaration] = STATE(363), + [sym_decorator] = STATE(977), + [aux_sym_export_statement_repeat1] = STATE(1213), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_default] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_var] = ACTIONS(813), + [anon_sym_let] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(809), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_class] = ACTIONS(827), + [anon_sym_async] = ACTIONS(829), + [anon_sym_function] = ACTIONS(831), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(809), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [281] = { - [sym_string] = STATE(1389), - [sym_formal_parameters] = STATE(1688), - [sym__property_name] = STATE(1389), - [sym_computed_property_name] = STATE(1389), - [aux_sym_object_repeat1] = STATE(1318), - [aux_sym_object_pattern_repeat1] = STATE(1307), - [sym_identifier] = ACTIONS(843), - [anon_sym_export] = ACTIONS(845), - [anon_sym_STAR] = ACTIONS(847), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_let] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(859), - [anon_sym_async] = ACTIONS(845), - [anon_sym_function] = ACTIONS(861), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_namespace_export] = STATE(1451), + [sym_export_clause] = STATE(1217), + [sym_declaration] = STATE(365), + [sym_variable_declaration] = STATE(363), + [sym_lexical_declaration] = STATE(363), + [sym_class_declaration] = STATE(363), + [sym_function_declaration] = STATE(363), + [sym_generator_function_declaration] = STATE(363), + [sym_decorator] = STATE(977), + [aux_sym_export_statement_repeat1] = STATE(1213), + [anon_sym_STAR] = ACTIONS(803), + [anon_sym_default] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(807), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_var] = ACTIONS(813), + [anon_sym_let] = ACTIONS(815), + [anon_sym_const] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(809), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_class] = ACTIONS(827), + [anon_sym_async] = ACTIONS(829), + [anon_sym_function] = ACTIONS(831), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(809), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [sym_number] = ACTIONS(863), - [sym_private_property_identifier] = ACTIONS(863), - [anon_sym_static] = ACTIONS(845), - [anon_sym_get] = ACTIONS(865), - [anon_sym_set] = ACTIONS(865), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [anon_sym_AT] = ACTIONS(93), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [282] = { - [sym_string] = STATE(1389), - [sym_formal_parameters] = STATE(1688), - [sym__property_name] = STATE(1389), - [sym_computed_property_name] = STATE(1389), - [aux_sym_object_repeat1] = STATE(1305), - [aux_sym_object_pattern_repeat1] = STATE(1307), - [sym_identifier] = ACTIONS(843), - [anon_sym_export] = ACTIONS(845), - [anon_sym_STAR] = ACTIONS(847), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_let] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(859), - [anon_sym_async] = ACTIONS(845), - [anon_sym_function] = ACTIONS(861), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_string] = STATE(1580), + [sym_formal_parameters] = STATE(1622), + [sym__property_name] = STATE(1580), + [sym_computed_property_name] = STATE(1580), + [aux_sym_object_repeat1] = STATE(1340), + [aux_sym_object_pattern_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(849), + [anon_sym_export] = ACTIONS(851), + [anon_sym_STAR] = ACTIONS(853), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(839), + [anon_sym_let] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_async] = ACTIONS(851), + [anon_sym_function] = ACTIONS(867), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [sym_number] = ACTIONS(863), - [sym_private_property_identifier] = ACTIONS(863), - [anon_sym_static] = ACTIONS(845), - [anon_sym_get] = ACTIONS(865), - [anon_sym_set] = ACTIONS(865), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [sym_number] = ACTIONS(869), + [sym_private_property_identifier] = ACTIONS(869), + [anon_sym_static] = ACTIONS(851), + [anon_sym_get] = ACTIONS(871), + [anon_sym_set] = ACTIONS(871), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [283] = { - [sym_string] = STATE(1389), - [sym_formal_parameters] = STATE(1688), - [sym__property_name] = STATE(1389), - [sym_computed_property_name] = STATE(1389), - [aux_sym_object_repeat1] = STATE(1318), - [aux_sym_object_pattern_repeat1] = STATE(1307), - [sym_identifier] = ACTIONS(843), - [anon_sym_export] = ACTIONS(845), - [anon_sym_STAR] = ACTIONS(847), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_let] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(850), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(859), - [anon_sym_async] = ACTIONS(845), - [anon_sym_function] = ACTIONS(861), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_string] = STATE(1580), + [sym_formal_parameters] = STATE(1622), + [sym__property_name] = STATE(1580), + [sym_computed_property_name] = STATE(1580), + [aux_sym_object_repeat1] = STATE(1301), + [aux_sym_object_pattern_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(849), + [anon_sym_export] = ACTIONS(851), + [anon_sym_STAR] = ACTIONS(853), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(837), + [anon_sym_let] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_async] = ACTIONS(851), + [anon_sym_function] = ACTIONS(867), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [sym_number] = ACTIONS(863), - [sym_private_property_identifier] = ACTIONS(863), - [anon_sym_static] = ACTIONS(845), - [anon_sym_get] = ACTIONS(865), - [anon_sym_set] = ACTIONS(865), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [sym_number] = ACTIONS(869), + [sym_private_property_identifier] = ACTIONS(869), + [anon_sym_static] = ACTIONS(851), + [anon_sym_get] = ACTIONS(871), + [anon_sym_set] = ACTIONS(871), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [284] = { - [sym_namespace_export] = STATE(1571), - [sym_export_clause] = STATE(1246), - [sym_declaration] = STATE(338), - [sym_variable_declaration] = STATE(357), - [sym_lexical_declaration] = STATE(357), - [sym_class_declaration] = STATE(357), - [sym_function_declaration] = STATE(357), - [sym_generator_function_declaration] = STATE(357), - [sym_decorator] = STATE(981), - [aux_sym_export_statement_repeat1] = STATE(1248), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_default] = ACTIONS(867), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_var] = ACTIONS(811), - [anon_sym_let] = ACTIONS(813), - [anon_sym_const] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_class] = ACTIONS(825), - [anon_sym_async] = ACTIONS(827), - [anon_sym_function] = ACTIONS(829), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_string] = STATE(1580), + [sym_formal_parameters] = STATE(1622), + [sym__property_name] = STATE(1580), + [sym_computed_property_name] = STATE(1580), + [aux_sym_object_repeat1] = STATE(1340), + [aux_sym_object_pattern_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(849), + [anon_sym_export] = ACTIONS(851), + [anon_sym_STAR] = ACTIONS(853), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(811), + [anon_sym_let] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_async] = ACTIONS(851), + [anon_sym_function] = ACTIONS(867), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [sym_number] = ACTIONS(869), + [sym_private_property_identifier] = ACTIONS(869), + [anon_sym_static] = ACTIONS(851), + [anon_sym_get] = ACTIONS(871), + [anon_sym_set] = ACTIONS(871), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [285] = { - [sym_string] = STATE(1389), - [sym__property_name] = STATE(1389), - [sym_computed_property_name] = STATE(1389), - [aux_sym_object_repeat1] = STATE(1318), - [aux_sym_object_pattern_repeat1] = STATE(1307), - [sym_identifier] = ACTIONS(871), - [anon_sym_export] = ACTIONS(871), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_let] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(859), - [anon_sym_async] = ACTIONS(871), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_string] = STATE(1580), + [sym__property_name] = STATE(1580), + [sym_computed_property_name] = STATE(1580), + [aux_sym_object_repeat1] = STATE(1301), + [aux_sym_object_pattern_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(873), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(837), + [anon_sym_let] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_async] = ACTIONS(873), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [sym_number] = ACTIONS(863), - [sym_private_property_identifier] = ACTIONS(863), - [anon_sym_static] = ACTIONS(871), - [anon_sym_get] = ACTIONS(871), - [anon_sym_set] = ACTIONS(871), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [sym_number] = ACTIONS(869), + [sym_private_property_identifier] = ACTIONS(869), + [anon_sym_static] = ACTIONS(873), + [anon_sym_get] = ACTIONS(873), + [anon_sym_set] = ACTIONS(873), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [286] = { - [sym_string] = STATE(1389), - [sym__property_name] = STATE(1389), - [sym_computed_property_name] = STATE(1389), - [aux_sym_object_repeat1] = STATE(1305), - [aux_sym_object_pattern_repeat1] = STATE(1307), - [sym_identifier] = ACTIONS(871), - [anon_sym_export] = ACTIONS(871), - [anon_sym_STAR] = ACTIONS(847), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_let] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(859), - [anon_sym_async] = ACTIONS(873), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_string] = STATE(1580), + [sym__property_name] = STATE(1580), + [sym_computed_property_name] = STATE(1580), + [aux_sym_object_repeat1] = STATE(1340), + [aux_sym_object_pattern_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(873), + [anon_sym_STAR] = ACTIONS(853), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(839), + [anon_sym_let] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_async] = ACTIONS(875), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [sym_number] = ACTIONS(863), - [sym_private_property_identifier] = ACTIONS(863), - [anon_sym_static] = ACTIONS(871), - [anon_sym_get] = ACTIONS(875), - [anon_sym_set] = ACTIONS(875), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [sym_number] = ACTIONS(869), + [sym_private_property_identifier] = ACTIONS(869), + [anon_sym_static] = ACTIONS(873), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [287] = { - [sym_string] = STATE(1389), - [sym__property_name] = STATE(1389), - [sym_computed_property_name] = STATE(1389), - [aux_sym_object_repeat1] = STATE(1318), - [aux_sym_object_pattern_repeat1] = STATE(1307), - [sym_identifier] = ACTIONS(871), - [anon_sym_export] = ACTIONS(871), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_let] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(859), - [anon_sym_async] = ACTIONS(871), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_string] = STATE(1580), + [sym__property_name] = STATE(1580), + [sym_computed_property_name] = STATE(1580), + [aux_sym_object_repeat1] = STATE(1340), + [aux_sym_object_pattern_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(873), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(839), + [anon_sym_let] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_async] = ACTIONS(873), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [sym_number] = ACTIONS(863), - [sym_private_property_identifier] = ACTIONS(863), - [anon_sym_static] = ACTIONS(871), - [anon_sym_get] = ACTIONS(871), - [anon_sym_set] = ACTIONS(871), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [sym_number] = ACTIONS(869), + [sym_private_property_identifier] = ACTIONS(869), + [anon_sym_static] = ACTIONS(873), + [anon_sym_get] = ACTIONS(873), + [anon_sym_set] = ACTIONS(873), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [288] = { - [sym_string] = STATE(1389), - [sym__property_name] = STATE(1389), - [sym_computed_property_name] = STATE(1389), - [aux_sym_object_repeat1] = STATE(1318), - [aux_sym_object_pattern_repeat1] = STATE(1307), - [sym_identifier] = ACTIONS(871), - [anon_sym_export] = ACTIONS(871), - [anon_sym_STAR] = ACTIONS(847), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_let] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(859), + [sym_string] = STATE(1580), + [sym__property_name] = STATE(1580), + [sym_computed_property_name] = STATE(1580), + [aux_sym_object_repeat1] = STATE(1340), + [aux_sym_object_pattern_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(873), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(811), + [anon_sym_let] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(865), [anon_sym_async] = ACTIONS(873), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [sym_number] = ACTIONS(863), - [sym_private_property_identifier] = ACTIONS(863), - [anon_sym_static] = ACTIONS(871), - [anon_sym_get] = ACTIONS(875), - [anon_sym_set] = ACTIONS(875), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [sym_number] = ACTIONS(869), + [sym_private_property_identifier] = ACTIONS(869), + [anon_sym_static] = ACTIONS(873), + [anon_sym_get] = ACTIONS(873), + [anon_sym_set] = ACTIONS(873), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [289] = { - [sym_string] = STATE(1389), - [sym__property_name] = STATE(1389), - [sym_computed_property_name] = STATE(1389), - [aux_sym_object_repeat1] = STATE(1305), - [aux_sym_object_pattern_repeat1] = STATE(1307), - [sym_identifier] = ACTIONS(871), - [anon_sym_export] = ACTIONS(871), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_let] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(859), - [anon_sym_async] = ACTIONS(871), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_string] = STATE(1580), + [sym__property_name] = STATE(1580), + [sym_computed_property_name] = STATE(1580), + [aux_sym_object_repeat1] = STATE(1340), + [aux_sym_object_pattern_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(873), + [anon_sym_STAR] = ACTIONS(853), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(811), + [anon_sym_let] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_async] = ACTIONS(875), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [sym_number] = ACTIONS(863), - [sym_private_property_identifier] = ACTIONS(863), - [anon_sym_static] = ACTIONS(871), - [anon_sym_get] = ACTIONS(871), - [anon_sym_set] = ACTIONS(871), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [sym_number] = ACTIONS(869), + [sym_private_property_identifier] = ACTIONS(869), + [anon_sym_static] = ACTIONS(873), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [290] = { - [sym_string] = STATE(1389), - [sym__property_name] = STATE(1389), - [sym_computed_property_name] = STATE(1389), - [aux_sym_object_repeat1] = STATE(1318), - [aux_sym_object_pattern_repeat1] = STATE(1307), - [sym_identifier] = ACTIONS(871), - [anon_sym_export] = ACTIONS(871), - [anon_sym_STAR] = ACTIONS(847), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_let] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(857), - [anon_sym_SQUOTE] = ACTIONS(859), - [anon_sym_async] = ACTIONS(873), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_string] = STATE(1580), + [sym__property_name] = STATE(1580), + [sym_computed_property_name] = STATE(1580), + [aux_sym_object_repeat1] = STATE(1301), + [aux_sym_object_pattern_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(873), + [anon_sym_STAR] = ACTIONS(853), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(837), + [anon_sym_let] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(865), + [anon_sym_async] = ACTIONS(875), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [sym_number] = ACTIONS(863), - [sym_private_property_identifier] = ACTIONS(863), - [anon_sym_static] = ACTIONS(871), - [anon_sym_get] = ACTIONS(875), - [anon_sym_set] = ACTIONS(875), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [sym_number] = ACTIONS(869), + [sym_private_property_identifier] = ACTIONS(869), + [anon_sym_static] = ACTIONS(873), + [anon_sym_get] = ACTIONS(877), + [anon_sym_set] = ACTIONS(877), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [291] = { - [sym_catch_clause] = STATE(312), - [sym_finally_clause] = STATE(396), - [ts_builtin_sym_end] = ACTIONS(877), + [sym_formal_parameters] = STATE(1695), [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(879), - [anon_sym_default] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_RBRACE] = ACTIONS(877), - [anon_sym_import] = ACTIONS(879), - [anon_sym_with] = ACTIONS(879), - [anon_sym_var] = ACTIONS(879), - [anon_sym_let] = ACTIONS(879), - [anon_sym_const] = ACTIONS(879), - [anon_sym_else] = ACTIONS(879), - [anon_sym_if] = ACTIONS(879), - [anon_sym_switch] = ACTIONS(879), - [anon_sym_for] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_await] = ACTIONS(879), - [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(879), - [anon_sym_try] = ACTIONS(879), - [anon_sym_break] = ACTIONS(879), - [anon_sym_continue] = ACTIONS(879), - [anon_sym_debugger] = ACTIONS(879), - [anon_sym_return] = ACTIONS(879), - [anon_sym_throw] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(877), - [anon_sym_case] = ACTIONS(879), - [anon_sym_catch] = ACTIONS(881), - [anon_sym_finally] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(877), - [sym_glimmer_opening_tag] = ACTIONS(877), - [anon_sym_LT] = ACTIONS(879), - [anon_sym_DQUOTE] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(877), - [anon_sym_class] = ACTIONS(879), - [anon_sym_async] = ACTIONS(879), - [anon_sym_function] = ACTIONS(879), - [anon_sym_new] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(879), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(877), - [anon_sym_typeof] = ACTIONS(879), - [anon_sym_void] = ACTIONS(879), - [anon_sym_delete] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_export] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_let] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(883), + [anon_sym_RPAREN] = ACTIONS(809), + [anon_sym_in] = ACTIONS(820), + [anon_sym_COLON] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_RBRACK] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(888), + [anon_sym_EQ_GT] = ACTIONS(890), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(877), - [sym_number] = ACTIONS(877), - [sym_private_property_identifier] = ACTIONS(877), - [sym_this] = ACTIONS(879), - [sym_super] = ACTIONS(879), - [sym_true] = ACTIONS(879), - [sym_false] = ACTIONS(879), - [sym_null] = ACTIONS(879), - [sym_undefined] = ACTIONS(879), - [anon_sym_AT] = ACTIONS(877), - [anon_sym_static] = ACTIONS(879), - [anon_sym_get] = ACTIONS(879), - [anon_sym_set] = ACTIONS(879), + [anon_sym_BQUOTE] = ACTIONS(809), + [anon_sym_static] = ACTIONS(881), + [anon_sym_get] = ACTIONS(881), + [anon_sym_set] = ACTIONS(881), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [292] = { - [sym_formal_parameters] = STATE(1624), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(887), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_let] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_in] = ACTIONS(818), - [anon_sym_COLON] = ACTIONS(807), + [sym_formal_parameters] = STATE(1695), + [sym_identifier] = ACTIONS(879), + [anon_sym_export] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_let] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(883), + [anon_sym_RPAREN] = ACTIONS(809), + [anon_sym_in] = ACTIONS(820), + [anon_sym_COLON] = ACTIONS(809), [anon_sym_EQ] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_RBRACK] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(894), - [anon_sym_EQ_GT] = ACTIONS(896), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_RBRACK] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(888), + [anon_sym_EQ_GT] = ACTIONS(890), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_static] = ACTIONS(887), - [anon_sym_get] = ACTIONS(887), - [anon_sym_set] = ACTIONS(887), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [anon_sym_static] = ACTIONS(881), + [anon_sym_get] = ACTIONS(881), + [anon_sym_set] = ACTIONS(881), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [293] = { - [sym_formal_parameters] = STATE(1624), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(887), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_let] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_in] = ACTIONS(818), - [anon_sym_COLON] = ACTIONS(807), - [anon_sym_EQ] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_RBRACK] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(894), - [anon_sym_EQ_GT] = ACTIONS(896), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [ts_builtin_sym_end] = ACTIONS(508), + [sym_identifier] = ACTIONS(510), + [anon_sym_export] = ACTIONS(510), + [anon_sym_default] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(508), + [anon_sym_COMMA] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_import] = ACTIONS(510), + [anon_sym_with] = 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_while] = ACTIONS(510), + [anon_sym_do] = ACTIONS(510), + [anon_sym_try] = 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_catch] = ACTIONS(510), + [anon_sym_finally] = ACTIONS(510), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_LBRACK] = ACTIONS(508), + [sym_glimmer_opening_tag] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(510), + [anon_sym_DQUOTE] = ACTIONS(508), + [anon_sym_SQUOTE] = ACTIONS(508), + [anon_sym_class] = ACTIONS(510), + [anon_sym_async] = ACTIONS(510), + [anon_sym_function] = ACTIONS(510), + [anon_sym_new] = ACTIONS(510), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_SLASH] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(508), + [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), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_static] = ACTIONS(887), - [anon_sym_get] = ACTIONS(887), - [anon_sym_set] = ACTIONS(887), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(508), + [sym_number] = ACTIONS(508), + [sym_private_property_identifier] = 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(518), [sym_html_comment] = ACTIONS(5), }, [294] = { - [ts_builtin_sym_end] = ACTIONS(506), - [sym_identifier] = ACTIONS(508), - [anon_sym_export] = ACTIONS(508), - [anon_sym_default] = ACTIONS(508), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_COMMA] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_import] = ACTIONS(508), - [anon_sym_with] = ACTIONS(508), - [anon_sym_var] = ACTIONS(508), - [anon_sym_let] = ACTIONS(508), - [anon_sym_const] = ACTIONS(508), - [anon_sym_else] = ACTIONS(508), - [anon_sym_if] = ACTIONS(508), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_for] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(506), - [anon_sym_await] = ACTIONS(508), - [anon_sym_while] = ACTIONS(508), - [anon_sym_do] = ACTIONS(508), - [anon_sym_try] = ACTIONS(508), - [anon_sym_break] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(508), - [anon_sym_debugger] = ACTIONS(508), - [anon_sym_return] = ACTIONS(508), - [anon_sym_throw] = ACTIONS(508), - [anon_sym_SEMI] = ACTIONS(506), - [anon_sym_case] = ACTIONS(508), - [anon_sym_catch] = ACTIONS(508), - [anon_sym_finally] = ACTIONS(508), - [anon_sym_yield] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(506), - [sym_glimmer_opening_tag] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(508), - [anon_sym_DQUOTE] = ACTIONS(506), - [anon_sym_SQUOTE] = ACTIONS(506), - [anon_sym_class] = ACTIONS(508), - [anon_sym_async] = ACTIONS(508), - [anon_sym_function] = ACTIONS(508), - [anon_sym_new] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_BANG] = ACTIONS(506), - [anon_sym_TILDE] = ACTIONS(506), - [anon_sym_typeof] = ACTIONS(508), - [anon_sym_void] = ACTIONS(508), - [anon_sym_delete] = ACTIONS(508), - [anon_sym_PLUS_PLUS] = ACTIONS(506), - [anon_sym_DASH_DASH] = ACTIONS(506), + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(612), + [anon_sym_export] = ACTIONS(612), + [anon_sym_default] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_COMMA] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_import] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), + [anon_sym_var] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_const] = ACTIONS(612), + [anon_sym_else] = ACTIONS(612), + [anon_sym_if] = ACTIONS(612), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_for] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_while] = ACTIONS(612), + [anon_sym_do] = ACTIONS(612), + [anon_sym_try] = ACTIONS(612), + [anon_sym_break] = ACTIONS(612), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_debugger] = ACTIONS(612), + [anon_sym_return] = ACTIONS(612), + [anon_sym_throw] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_case] = ACTIONS(612), + [anon_sym_catch] = ACTIONS(612), + [anon_sym_finally] = ACTIONS(612), + [anon_sym_yield] = ACTIONS(612), + [anon_sym_LBRACK] = ACTIONS(610), + [sym_glimmer_opening_tag] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(610), + [anon_sym_SQUOTE] = ACTIONS(610), + [anon_sym_class] = ACTIONS(612), + [anon_sym_async] = ACTIONS(612), + [anon_sym_function] = ACTIONS(612), + [anon_sym_new] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(612), + [anon_sym_SLASH] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(610), + [anon_sym_TILDE] = ACTIONS(610), + [anon_sym_typeof] = ACTIONS(612), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(610), + [anon_sym_DASH_DASH] = ACTIONS(610), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(506), - [sym_number] = ACTIONS(506), - [sym_private_property_identifier] = ACTIONS(506), - [sym_this] = ACTIONS(508), - [sym_super] = ACTIONS(508), - [sym_true] = ACTIONS(508), - [sym_false] = ACTIONS(508), - [sym_null] = ACTIONS(508), - [sym_undefined] = ACTIONS(508), - [anon_sym_AT] = ACTIONS(506), - [anon_sym_static] = ACTIONS(508), - [anon_sym_get] = ACTIONS(508), - [anon_sym_set] = ACTIONS(508), - [sym__automatic_semicolon] = ACTIONS(516), + [anon_sym_BQUOTE] = ACTIONS(610), + [sym_number] = ACTIONS(610), + [sym_private_property_identifier] = ACTIONS(610), + [sym_this] = ACTIONS(612), + [sym_super] = ACTIONS(612), + [sym_true] = ACTIONS(612), + [sym_false] = ACTIONS(612), + [sym_null] = ACTIONS(612), + [sym_undefined] = ACTIONS(612), + [anon_sym_AT] = ACTIONS(610), + [anon_sym_static] = ACTIONS(612), + [anon_sym_get] = ACTIONS(612), + [anon_sym_set] = ACTIONS(612), + [sym__automatic_semicolon] = ACTIONS(894), [sym_html_comment] = ACTIONS(5), }, [295] = { - [ts_builtin_sym_end] = ACTIONS(630), - [sym_identifier] = ACTIONS(632), - [anon_sym_export] = ACTIONS(632), - [anon_sym_default] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_COMMA] = ACTIONS(630), - [anon_sym_RBRACE] = ACTIONS(630), - [anon_sym_import] = ACTIONS(632), - [anon_sym_with] = ACTIONS(632), - [anon_sym_var] = ACTIONS(632), - [anon_sym_let] = ACTIONS(632), - [anon_sym_const] = ACTIONS(632), - [anon_sym_else] = ACTIONS(632), - [anon_sym_if] = ACTIONS(632), - [anon_sym_switch] = ACTIONS(632), - [anon_sym_for] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_await] = ACTIONS(632), - [anon_sym_while] = ACTIONS(632), - [anon_sym_do] = ACTIONS(632), - [anon_sym_try] = ACTIONS(632), - [anon_sym_break] = ACTIONS(632), - [anon_sym_continue] = ACTIONS(632), - [anon_sym_debugger] = ACTIONS(632), - [anon_sym_return] = ACTIONS(632), - [anon_sym_throw] = ACTIONS(632), - [anon_sym_SEMI] = ACTIONS(630), - [anon_sym_case] = ACTIONS(632), - [anon_sym_catch] = ACTIONS(632), - [anon_sym_finally] = ACTIONS(632), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(630), - [sym_glimmer_opening_tag] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(632), - [anon_sym_DQUOTE] = ACTIONS(630), - [anon_sym_SQUOTE] = ACTIONS(630), - [anon_sym_class] = ACTIONS(632), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(632), - [anon_sym_new] = ACTIONS(632), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_SLASH] = ACTIONS(632), - [anon_sym_BANG] = ACTIONS(630), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_typeof] = ACTIONS(632), - [anon_sym_void] = ACTIONS(632), - [anon_sym_delete] = ACTIONS(632), - [anon_sym_PLUS_PLUS] = ACTIONS(630), - [anon_sym_DASH_DASH] = ACTIONS(630), + [sym_catch_clause] = STATE(311), + [sym_finally_clause] = STATE(339), + [ts_builtin_sym_end] = ACTIONS(896), + [sym_identifier] = ACTIONS(898), + [anon_sym_export] = ACTIONS(898), + [anon_sym_default] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_import] = ACTIONS(898), + [anon_sym_with] = ACTIONS(898), + [anon_sym_var] = ACTIONS(898), + [anon_sym_let] = ACTIONS(898), + [anon_sym_const] = ACTIONS(898), + [anon_sym_else] = ACTIONS(898), + [anon_sym_if] = ACTIONS(898), + [anon_sym_switch] = ACTIONS(898), + [anon_sym_for] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(896), + [anon_sym_await] = ACTIONS(898), + [anon_sym_while] = ACTIONS(898), + [anon_sym_do] = ACTIONS(898), + [anon_sym_try] = ACTIONS(898), + [anon_sym_break] = ACTIONS(898), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_debugger] = ACTIONS(898), + [anon_sym_return] = ACTIONS(898), + [anon_sym_throw] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(896), + [anon_sym_case] = ACTIONS(898), + [anon_sym_catch] = ACTIONS(900), + [anon_sym_finally] = ACTIONS(902), + [anon_sym_yield] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(896), + [sym_glimmer_opening_tag] = ACTIONS(896), + [anon_sym_LT] = ACTIONS(898), + [anon_sym_DQUOTE] = ACTIONS(896), + [anon_sym_SQUOTE] = ACTIONS(896), + [anon_sym_class] = ACTIONS(898), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(898), + [anon_sym_new] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_BANG] = ACTIONS(896), + [anon_sym_TILDE] = ACTIONS(896), + [anon_sym_typeof] = ACTIONS(898), + [anon_sym_void] = ACTIONS(898), + [anon_sym_delete] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_DASH_DASH] = ACTIONS(896), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(630), - [sym_number] = ACTIONS(630), - [sym_private_property_identifier] = ACTIONS(630), - [sym_this] = ACTIONS(632), - [sym_super] = ACTIONS(632), - [sym_true] = ACTIONS(632), - [sym_false] = ACTIONS(632), - [sym_null] = ACTIONS(632), - [sym_undefined] = ACTIONS(632), - [anon_sym_AT] = ACTIONS(630), - [anon_sym_static] = ACTIONS(632), - [anon_sym_get] = ACTIONS(632), - [anon_sym_set] = ACTIONS(632), - [sym__automatic_semicolon] = ACTIONS(900), + [anon_sym_BQUOTE] = ACTIONS(896), + [sym_number] = ACTIONS(896), + [sym_private_property_identifier] = ACTIONS(896), + [sym_this] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_true] = ACTIONS(898), + [sym_false] = ACTIONS(898), + [sym_null] = ACTIONS(898), + [sym_undefined] = ACTIONS(898), + [anon_sym_AT] = ACTIONS(896), + [anon_sym_static] = ACTIONS(898), + [anon_sym_get] = ACTIONS(898), + [anon_sym_set] = ACTIONS(898), [sym_html_comment] = ACTIONS(5), }, [296] = { - [sym_formal_parameters] = STATE(1681), - [sym_identifier] = ACTIONS(902), - [anon_sym_export] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_let] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_in] = ACTIONS(818), - [anon_sym_of] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_EQ] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_async] = ACTIONS(904), - [anon_sym_function] = ACTIONS(906), - [anon_sym_EQ_GT] = ACTIONS(908), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_formal_parameters] = STATE(1622), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_let] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(883), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_async] = ACTIONS(906), + [anon_sym_function] = ACTIONS(867), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_static] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [anon_sym_static] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [297] = { - [sym_variable_declarator] = STATE(1256), - [sym_object_pattern] = STATE(1177), - [sym_array_pattern] = STATE(1177), - [sym__destructuring_pattern] = STATE(1177), - [aux_sym_object_repeat1] = STATE(1318), - [aux_sym_object_pattern_repeat1] = STATE(1307), - [sym_identifier] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_formal_parameters] = STATE(1649), + [sym_identifier] = ACTIONS(908), + [anon_sym_export] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_let] = ACTIONS(910), + [anon_sym_LPAREN] = ACTIONS(883), + [anon_sym_RPAREN] = ACTIONS(912), + [anon_sym_in] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(914), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_RBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_async] = ACTIONS(910), + [anon_sym_function] = ACTIONS(888), + [anon_sym_EQ_GT] = ACTIONS(917), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [anon_sym_static] = ACTIONS(910), + [anon_sym_get] = ACTIONS(910), + [anon_sym_set] = ACTIONS(910), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [298] = { - [sym_formal_parameters] = STATE(1624), - [sym_identifier] = ACTIONS(885), - [anon_sym_export] = ACTIONS(887), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(916), - [anon_sym_let] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(916), - [anon_sym_in] = ACTIONS(818), - [anon_sym_EQ] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_RBRACK] = ACTIONS(916), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_async] = ACTIONS(887), - [anon_sym_function] = ACTIONS(894), - [anon_sym_EQ_GT] = ACTIONS(896), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_formal_parameters] = STATE(1649), + [sym_identifier] = ACTIONS(908), + [anon_sym_export] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(919), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_let] = ACTIONS(910), + [anon_sym_LPAREN] = ACTIONS(883), + [anon_sym_RPAREN] = ACTIONS(919), + [anon_sym_in] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_RBRACK] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_async] = ACTIONS(910), + [anon_sym_function] = ACTIONS(888), + [anon_sym_EQ_GT] = ACTIONS(917), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_static] = ACTIONS(887), - [anon_sym_get] = ACTIONS(887), - [anon_sym_set] = ACTIONS(887), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [anon_sym_static] = ACTIONS(910), + [anon_sym_get] = ACTIONS(910), + [anon_sym_set] = ACTIONS(910), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [299] = { - [sym_formal_parameters] = STATE(1688), - [sym_identifier] = ACTIONS(922), - [anon_sym_export] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_let] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_EQ] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_async] = ACTIONS(924), - [anon_sym_function] = ACTIONS(906), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_formal_parameters] = STATE(1622), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_let] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(883), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_async] = ACTIONS(906), + [anon_sym_function] = ACTIONS(921), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_static] = ACTIONS(924), - [anon_sym_get] = ACTIONS(924), - [anon_sym_set] = ACTIONS(924), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [anon_sym_static] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [300] = { - [sym_formal_parameters] = STATE(1616), - [sym_identifier] = ACTIONS(926), - [anon_sym_export] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_let] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(930), - [anon_sym_in] = ACTIONS(818), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_RBRACK] = ACTIONS(930), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_async] = ACTIONS(928), - [anon_sym_function] = ACTIONS(894), - [anon_sym_EQ_GT] = ACTIONS(935), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_formal_parameters] = STATE(1622), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_let] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(883), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_async] = ACTIONS(906), + [anon_sym_function] = ACTIONS(921), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_static] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [anon_sym_static] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [301] = { - [sym_formal_parameters] = STATE(1688), - [sym_identifier] = ACTIONS(922), - [anon_sym_export] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_let] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_async] = ACTIONS(924), - [anon_sym_function] = ACTIONS(906), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_formal_parameters] = STATE(1695), + [sym_identifier] = ACTIONS(879), + [anon_sym_export] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_let] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(883), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_in] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_RBRACK] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(888), + [anon_sym_EQ_GT] = ACTIONS(890), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_static] = ACTIONS(924), - [anon_sym_get] = ACTIONS(924), - [anon_sym_set] = ACTIONS(924), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [anon_sym_static] = ACTIONS(881), + [anon_sym_get] = ACTIONS(881), + [anon_sym_set] = ACTIONS(881), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [302] = { - [sym_formal_parameters] = STATE(1616), - [sym_identifier] = ACTIONS(926), - [anon_sym_export] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_let] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_in] = ACTIONS(818), - [anon_sym_EQ] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_RBRACK] = ACTIONS(937), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_async] = ACTIONS(928), - [anon_sym_function] = ACTIONS(894), - [anon_sym_EQ_GT] = ACTIONS(935), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_variable_declarator] = STATE(1187), + [sym_object_pattern] = STATE(1149), + [sym_array_pattern] = STATE(1149), + [sym__destructuring_pattern] = STATE(1149), + [aux_sym_object_repeat1] = STATE(1340), + [aux_sym_object_pattern_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(811), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_static] = ACTIONS(928), - [anon_sym_get] = ACTIONS(928), - [anon_sym_set] = ACTIONS(928), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [303] = { - [sym_variable_declarator] = STATE(1256), - [sym_object_pattern] = STATE(1177), - [sym_array_pattern] = STATE(1177), - [sym__destructuring_pattern] = STATE(1177), - [aux_sym_object_repeat1] = STATE(1318), - [aux_sym_object_pattern_repeat1] = STATE(1307), - [sym_identifier] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_formal_parameters] = STATE(1614), + [sym_identifier] = ACTIONS(935), + [anon_sym_export] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_let] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(883), + [anon_sym_in] = ACTIONS(820), + [anon_sym_of] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_async] = ACTIONS(937), + [anon_sym_function] = ACTIONS(921), + [anon_sym_EQ_GT] = ACTIONS(941), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [anon_sym_static] = ACTIONS(937), + [anon_sym_get] = ACTIONS(937), + [anon_sym_set] = ACTIONS(937), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [304] = { - [sym_variable_declarator] = STATE(1256), - [sym_object_pattern] = STATE(1177), - [sym_array_pattern] = STATE(1177), - [sym__destructuring_pattern] = STATE(1177), - [aux_sym_object_repeat1] = STATE(1305), - [aux_sym_object_pattern_repeat1] = STATE(1307), - [sym_identifier] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_formal_parameters] = STATE(1622), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_let] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(883), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_async] = ACTIONS(906), + [anon_sym_function] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [anon_sym_static] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [305] = { - [ts_builtin_sym_end] = ACTIONS(630), - [sym_identifier] = ACTIONS(632), - [anon_sym_export] = ACTIONS(632), - [anon_sym_default] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_COMMA] = ACTIONS(630), - [anon_sym_RBRACE] = ACTIONS(630), - [anon_sym_import] = ACTIONS(632), - [anon_sym_with] = ACTIONS(632), - [anon_sym_var] = ACTIONS(632), - [anon_sym_let] = ACTIONS(632), - [anon_sym_const] = ACTIONS(632), - [anon_sym_else] = ACTIONS(632), - [anon_sym_if] = ACTIONS(632), - [anon_sym_switch] = ACTIONS(632), - [anon_sym_for] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_await] = ACTIONS(632), - [anon_sym_while] = ACTIONS(632), - [anon_sym_do] = ACTIONS(632), - [anon_sym_try] = ACTIONS(632), - [anon_sym_break] = ACTIONS(632), - [anon_sym_continue] = ACTIONS(632), - [anon_sym_debugger] = ACTIONS(632), - [anon_sym_return] = ACTIONS(632), - [anon_sym_throw] = ACTIONS(632), - [anon_sym_SEMI] = ACTIONS(630), - [anon_sym_case] = ACTIONS(632), - [anon_sym_catch] = ACTIONS(632), - [anon_sym_finally] = ACTIONS(632), - [anon_sym_yield] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(630), - [sym_glimmer_opening_tag] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(632), - [anon_sym_DQUOTE] = ACTIONS(630), - [anon_sym_SQUOTE] = ACTIONS(630), - [anon_sym_class] = ACTIONS(632), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(632), - [anon_sym_new] = ACTIONS(632), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_SLASH] = ACTIONS(632), - [anon_sym_BANG] = ACTIONS(630), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_typeof] = ACTIONS(632), - [anon_sym_void] = ACTIONS(632), - [anon_sym_delete] = ACTIONS(632), - [anon_sym_PLUS_PLUS] = ACTIONS(630), - [anon_sym_DASH_DASH] = ACTIONS(630), + [ts_builtin_sym_end] = ACTIONS(634), + [sym_identifier] = ACTIONS(636), + [anon_sym_export] = ACTIONS(636), + [anon_sym_default] = ACTIONS(636), + [anon_sym_LBRACE] = ACTIONS(634), + [anon_sym_COMMA] = ACTIONS(634), + [anon_sym_RBRACE] = ACTIONS(634), + [anon_sym_import] = ACTIONS(636), + [anon_sym_with] = ACTIONS(636), + [anon_sym_var] = ACTIONS(636), + [anon_sym_let] = ACTIONS(636), + [anon_sym_const] = ACTIONS(636), + [anon_sym_else] = ACTIONS(636), + [anon_sym_if] = ACTIONS(636), + [anon_sym_switch] = ACTIONS(636), + [anon_sym_for] = ACTIONS(636), + [anon_sym_LPAREN] = ACTIONS(634), + [anon_sym_await] = ACTIONS(636), + [anon_sym_while] = ACTIONS(636), + [anon_sym_do] = ACTIONS(636), + [anon_sym_try] = ACTIONS(636), + [anon_sym_break] = ACTIONS(636), + [anon_sym_continue] = ACTIONS(636), + [anon_sym_debugger] = ACTIONS(636), + [anon_sym_return] = ACTIONS(636), + [anon_sym_throw] = ACTIONS(636), + [anon_sym_SEMI] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), + [anon_sym_catch] = ACTIONS(636), + [anon_sym_finally] = ACTIONS(636), + [anon_sym_yield] = ACTIONS(636), + [anon_sym_LBRACK] = ACTIONS(634), + [sym_glimmer_opening_tag] = ACTIONS(634), + [anon_sym_LT] = ACTIONS(636), + [anon_sym_DQUOTE] = ACTIONS(634), + [anon_sym_SQUOTE] = ACTIONS(634), + [anon_sym_class] = ACTIONS(636), + [anon_sym_async] = ACTIONS(636), + [anon_sym_function] = ACTIONS(636), + [anon_sym_new] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(636), + [anon_sym_DASH] = ACTIONS(636), + [anon_sym_SLASH] = ACTIONS(636), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_TILDE] = ACTIONS(634), + [anon_sym_typeof] = ACTIONS(636), + [anon_sym_void] = ACTIONS(636), + [anon_sym_delete] = ACTIONS(636), + [anon_sym_PLUS_PLUS] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(634), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(630), - [sym_number] = ACTIONS(630), - [sym_private_property_identifier] = ACTIONS(630), - [sym_this] = ACTIONS(632), - [sym_super] = ACTIONS(632), - [sym_true] = ACTIONS(632), - [sym_false] = ACTIONS(632), - [sym_null] = ACTIONS(632), - [sym_undefined] = ACTIONS(632), - [anon_sym_AT] = ACTIONS(630), - [anon_sym_static] = ACTIONS(632), - [anon_sym_get] = ACTIONS(632), - [anon_sym_set] = ACTIONS(632), + [anon_sym_BQUOTE] = ACTIONS(634), + [sym_number] = ACTIONS(634), + [sym_private_property_identifier] = ACTIONS(634), + [sym_this] = ACTIONS(636), + [sym_super] = ACTIONS(636), + [sym_true] = ACTIONS(636), + [sym_false] = ACTIONS(636), + [sym_null] = ACTIONS(636), + [sym_undefined] = ACTIONS(636), + [anon_sym_AT] = ACTIONS(634), + [anon_sym_static] = ACTIONS(636), + [anon_sym_get] = ACTIONS(636), + [anon_sym_set] = ACTIONS(636), [sym_html_comment] = ACTIONS(5), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(638), - [sym_identifier] = ACTIONS(640), - [anon_sym_export] = ACTIONS(640), - [anon_sym_default] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_COMMA] = ACTIONS(638), - [anon_sym_RBRACE] = ACTIONS(638), - [anon_sym_import] = ACTIONS(640), - [anon_sym_with] = ACTIONS(640), - [anon_sym_var] = ACTIONS(640), - [anon_sym_let] = ACTIONS(640), - [anon_sym_const] = ACTIONS(640), - [anon_sym_else] = ACTIONS(640), - [anon_sym_if] = ACTIONS(640), - [anon_sym_switch] = ACTIONS(640), - [anon_sym_for] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(638), - [anon_sym_await] = ACTIONS(640), - [anon_sym_while] = ACTIONS(640), - [anon_sym_do] = ACTIONS(640), - [anon_sym_try] = ACTIONS(640), - [anon_sym_break] = ACTIONS(640), - [anon_sym_continue] = ACTIONS(640), - [anon_sym_debugger] = ACTIONS(640), - [anon_sym_return] = ACTIONS(640), - [anon_sym_throw] = ACTIONS(640), - [anon_sym_SEMI] = ACTIONS(638), - [anon_sym_case] = ACTIONS(640), - [anon_sym_catch] = ACTIONS(640), - [anon_sym_finally] = ACTIONS(640), - [anon_sym_yield] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(638), - [sym_glimmer_opening_tag] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(640), - [anon_sym_DQUOTE] = ACTIONS(638), - [anon_sym_SQUOTE] = ACTIONS(638), - [anon_sym_class] = ACTIONS(640), - [anon_sym_async] = ACTIONS(640), - [anon_sym_function] = ACTIONS(640), - [anon_sym_new] = ACTIONS(640), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_SLASH] = ACTIONS(640), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_typeof] = ACTIONS(640), - [anon_sym_void] = ACTIONS(640), - [anon_sym_delete] = ACTIONS(640), - [anon_sym_PLUS_PLUS] = ACTIONS(638), - [anon_sym_DASH_DASH] = ACTIONS(638), + [sym_formal_parameters] = STATE(1622), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_let] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(883), + [anon_sym_in] = ACTIONS(945), + [anon_sym_of] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_async] = ACTIONS(906), + [anon_sym_function] = ACTIONS(921), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(638), - [sym_number] = ACTIONS(638), - [sym_private_property_identifier] = ACTIONS(638), - [sym_this] = ACTIONS(640), - [sym_super] = ACTIONS(640), - [sym_true] = ACTIONS(640), - [sym_false] = ACTIONS(640), - [sym_null] = ACTIONS(640), - [sym_undefined] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(638), - [anon_sym_static] = ACTIONS(640), - [anon_sym_get] = ACTIONS(640), - [anon_sym_set] = ACTIONS(640), + [anon_sym_BQUOTE] = ACTIONS(809), + [anon_sym_static] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [307] = { - [sym_formal_parameters] = STATE(1688), - [sym_identifier] = ACTIONS(922), - [anon_sym_export] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_let] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_async] = ACTIONS(924), - [anon_sym_function] = ACTIONS(939), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_variable_declarator] = STATE(1187), + [sym_object_pattern] = STATE(1149), + [sym_array_pattern] = STATE(1149), + [sym__destructuring_pattern] = STATE(1149), + [aux_sym_object_repeat1] = STATE(1340), + [aux_sym_object_pattern_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(839), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_static] = ACTIONS(924), - [anon_sym_get] = ACTIONS(924), - [anon_sym_set] = ACTIONS(924), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [308] = { - [sym_formal_parameters] = STATE(1688), - [sym_identifier] = ACTIONS(922), - [anon_sym_export] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_let] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_in] = ACTIONS(941), - [anon_sym_of] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_async] = ACTIONS(924), - [anon_sym_function] = ACTIONS(906), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(612), + [anon_sym_export] = ACTIONS(612), + [anon_sym_default] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_COMMA] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_import] = ACTIONS(612), + [anon_sym_with] = ACTIONS(612), + [anon_sym_var] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_const] = ACTIONS(612), + [anon_sym_else] = ACTIONS(612), + [anon_sym_if] = ACTIONS(612), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_for] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_await] = ACTIONS(612), + [anon_sym_while] = ACTIONS(612), + [anon_sym_do] = ACTIONS(612), + [anon_sym_try] = ACTIONS(612), + [anon_sym_break] = ACTIONS(612), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_debugger] = ACTIONS(612), + [anon_sym_return] = ACTIONS(612), + [anon_sym_throw] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_case] = ACTIONS(612), + [anon_sym_catch] = ACTIONS(612), + [anon_sym_finally] = ACTIONS(612), + [anon_sym_yield] = ACTIONS(612), + [anon_sym_LBRACK] = ACTIONS(610), + [sym_glimmer_opening_tag] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(610), + [anon_sym_SQUOTE] = ACTIONS(610), + [anon_sym_class] = ACTIONS(612), + [anon_sym_async] = ACTIONS(612), + [anon_sym_function] = ACTIONS(612), + [anon_sym_new] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(612), + [anon_sym_SLASH] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(610), + [anon_sym_TILDE] = ACTIONS(610), + [anon_sym_typeof] = ACTIONS(612), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(610), + [anon_sym_DASH_DASH] = ACTIONS(610), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_static] = ACTIONS(924), - [anon_sym_get] = ACTIONS(924), - [anon_sym_set] = ACTIONS(924), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(610), + [sym_number] = ACTIONS(610), + [sym_private_property_identifier] = ACTIONS(610), + [sym_this] = ACTIONS(612), + [sym_super] = ACTIONS(612), + [sym_true] = ACTIONS(612), + [sym_false] = ACTIONS(612), + [sym_null] = ACTIONS(612), + [sym_undefined] = ACTIONS(612), + [anon_sym_AT] = ACTIONS(610), + [anon_sym_static] = ACTIONS(612), + [anon_sym_get] = ACTIONS(612), + [anon_sym_set] = ACTIONS(612), [sym_html_comment] = ACTIONS(5), }, [309] = { - [sym_formal_parameters] = STATE(1681), - [sym_identifier] = ACTIONS(902), - [anon_sym_export] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_let] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_in] = ACTIONS(818), - [anon_sym_of] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_EQ] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_async] = ACTIONS(904), - [anon_sym_function] = ACTIONS(906), - [anon_sym_EQ_GT] = ACTIONS(908), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_formal_parameters] = STATE(1614), + [sym_identifier] = ACTIONS(935), + [anon_sym_export] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_let] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(883), + [anon_sym_in] = ACTIONS(820), + [anon_sym_of] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_async] = ACTIONS(937), + [anon_sym_function] = ACTIONS(921), + [anon_sym_EQ_GT] = ACTIONS(941), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_static] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [anon_sym_static] = ACTIONS(937), + [anon_sym_get] = ACTIONS(937), + [anon_sym_set] = ACTIONS(937), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, [310] = { - [sym_formal_parameters] = STATE(1688), - [sym_identifier] = ACTIONS(922), - [anon_sym_export] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_let] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_in] = ACTIONS(818), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(818), - [anon_sym_GT] = ACTIONS(818), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_async] = ACTIONS(924), - [anon_sym_function] = ACTIONS(861), - [anon_sym_EQ_GT] = ACTIONS(831), - [sym_optional_chain] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_STAR_STAR_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(833), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(818), - [anon_sym_PIPE_PIPE] = ACTIONS(818), - [anon_sym_GT_GT] = ACTIONS(818), - [anon_sym_GT_GT_GT] = ACTIONS(818), - [anon_sym_LT_LT] = ACTIONS(818), - [anon_sym_AMP] = ACTIONS(818), - [anon_sym_CARET] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_PLUS] = ACTIONS(818), - [anon_sym_DASH] = ACTIONS(818), - [anon_sym_SLASH] = ACTIONS(818), - [anon_sym_PERCENT] = ACTIONS(818), - [anon_sym_STAR_STAR] = ACTIONS(818), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_QMARK_QMARK] = ACTIONS(818), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), + [sym_variable_declarator] = STATE(1187), + [sym_object_pattern] = STATE(1149), + [sym_array_pattern] = STATE(1149), + [sym__destructuring_pattern] = STATE(1149), + [aux_sym_object_repeat1] = STATE(1301), + [aux_sym_object_pattern_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(820), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_in] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(809), + [anon_sym_COLON] = ACTIONS(822), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_GT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(809), + [anon_sym_EQ_GT] = ACTIONS(833), + [sym_optional_chain] = ACTIONS(809), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_PERCENT_EQ] = ACTIONS(835), + [anon_sym_CARET_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_STAR_STAR_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_GT_GT_GT] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(820), + [anon_sym_AMP] = ACTIONS(820), + [anon_sym_CARET] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(820), + [anon_sym_DASH] = ACTIONS(820), + [anon_sym_SLASH] = ACTIONS(820), + [anon_sym_PERCENT] = ACTIONS(820), + [anon_sym_STAR_STAR] = ACTIONS(820), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_EQ_EQ] = ACTIONS(820), + [anon_sym_EQ_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(820), + [anon_sym_BANG_EQ_EQ] = ACTIONS(809), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_QMARK_QMARK] = ACTIONS(820), + [anon_sym_instanceof] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(809), + [anon_sym_DASH_DASH] = ACTIONS(809), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_static] = ACTIONS(924), - [anon_sym_get] = ACTIONS(924), - [anon_sym_set] = ACTIONS(924), - [sym__automatic_semicolon] = ACTIONS(807), - [sym__ternary_qmark] = ACTIONS(807), + [anon_sym_BQUOTE] = ACTIONS(809), + [sym__automatic_semicolon] = ACTIONS(809), + [sym__ternary_qmark] = ACTIONS(809), [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 12, - ACTIONS(885), 1, - sym_identifier, - ACTIONS(889), 1, - anon_sym_LPAREN, - ACTIONS(892), 1, - anon_sym_EQ, - ACTIONS(894), 1, - anon_sym_function, - ACTIONS(896), 1, - anon_sym_EQ_GT, - STATE(1624), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(948), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(887), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(807), 11, - sym__ternary_qmark, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - 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(833), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [89] = 5, - ACTIONS(883), 1, + [0] = 5, + ACTIONS(902), 1, anon_sym_finally, - STATE(401), 1, + STATE(399), 1, sym_finally_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(951), 17, + ACTIONS(950), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36127,7 +36077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(953), 43, + ACTIONS(952), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36171,33 +36121,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [164] = 11, - ACTIONS(889), 1, + [75] = 12, + ACTIONS(879), 1, + sym_identifier, + ACTIONS(883), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(888), 1, anon_sym_function, - ACTIONS(898), 1, - anon_sym_EQ, - ACTIONS(926), 1, - sym_identifier, - ACTIONS(935), 1, + ACTIONS(890), 1, anon_sym_EQ_GT, - STATE(1616), 1, + ACTIONS(892), 1, + anon_sym_EQ, + STATE(1695), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(928), 6, + ACTIONS(954), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(881), 6, anon_sym_export, anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(807), 13, + ACTIONS(809), 11, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -36208,7 +36160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(833), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -36224,7 +36176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 21, + ACTIONS(820), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -36246,13 +36198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [250] = 4, - ACTIONS(536), 1, - sym__automatic_semicolon, + [164] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(528), 17, + ACTIONS(640), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36270,7 +36221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(530), 43, + ACTIONS(642), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36314,89 +36265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [322] = 13, - ACTIONS(885), 1, - sym_identifier, - ACTIONS(889), 1, - anon_sym_LPAREN, - ACTIONS(894), 1, - anon_sym_function, - ACTIONS(896), 1, - anon_sym_EQ_GT, - ACTIONS(916), 1, - anon_sym_RBRACK, - ACTIONS(919), 1, - anon_sym_EQ, - ACTIONS(930), 1, - anon_sym_COMMA, - STATE(1624), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(887), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(807), 11, - sym__ternary_qmark, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - 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(833), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [412] = 3, + [234] = 5, + ACTIONS(961), 1, + anon_sym_else, + STATE(368), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(638), 18, - sym__automatic_semicolon, + ACTIONS(957), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36414,7 +36291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(640), 43, + ACTIONS(959), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36422,7 +36299,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -36458,13 +36334,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [482] = 4, - ACTIONS(598), 1, - sym__automatic_semicolon, + [308] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(590), 17, + ACTIONS(963), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36482,7 +36356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(592), 43, + ACTIONS(965), 44, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36504,6 +36378,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_LT, anon_sym_class, @@ -36526,13 +36401,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [554] = 4, - ACTIONS(955), 1, + [378] = 4, + ACTIONS(562), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(630), 17, + ACTIONS(554), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36550,7 +36425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(632), 43, + ACTIONS(556), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36594,13 +36469,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [626] = 4, - ACTIONS(546), 1, + [450] = 4, + ACTIONS(606), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(538), 17, + ACTIONS(598), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36618,7 +36493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(540), 43, + ACTIONS(600), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36662,13 +36537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [698] = 4, - ACTIONS(588), 1, - sym__automatic_semicolon, + [522] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(580), 17, + ACTIONS(626), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36686,7 +36560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(582), 43, + ACTIONS(628), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36730,30 +36604,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [770] = 11, - ACTIONS(831), 1, + [592] = 13, + ACTIONS(879), 1, + sym_identifier, + ACTIONS(883), 1, + anon_sym_LPAREN, + ACTIONS(888), 1, + anon_sym_function, + ACTIONS(890), 1, anon_sym_EQ_GT, - ACTIONS(841), 1, + ACTIONS(912), 1, + anon_sym_COMMA, + ACTIONS(923), 1, + anon_sym_RBRACK, + ACTIONS(926), 1, + anon_sym_EQ, + STATE(1695), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(881), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(809), 11, + sym__ternary_qmark, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + 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(835), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(820), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [682] = 11, + ACTIONS(833), 1, + anon_sym_EQ_GT, + ACTIONS(843), 1, anon_sym_EQ, - ACTIONS(889), 1, + ACTIONS(867), 1, + anon_sym_function, + ACTIONS(883), 1, anon_sym_LPAREN, - ACTIONS(922), 1, + ACTIONS(904), 1, sym_identifier, - ACTIONS(939), 1, - anon_sym_function, - STATE(1688), 1, + STATE(1622), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(924), 6, + ACTIONS(906), 6, anon_sym_export, anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(807), 13, + ACTIONS(809), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_SEMI, @@ -36767,7 +36718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(833), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -36783,7 +36734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 21, + ACTIONS(820), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -36805,12 +36756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [856] = 3, + [768] = 4, + ACTIONS(572), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(630), 18, - sym__automatic_semicolon, + ACTIONS(564), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36828,7 +36780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(632), 43, + ACTIONS(566), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36872,13 +36824,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [926] = 4, - ACTIONS(526), 1, - sym__automatic_semicolon, + [840] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(518), 17, + ACTIONS(967), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36896,7 +36846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(520), 43, + ACTIONS(969), 44, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36918,6 +36868,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_LT, anon_sym_class, @@ -36940,16 +36891,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [998] = 3, + [910] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(957), 18, + ACTIONS(634), 18, + 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, sym_glimmer_opening_tag, @@ -36963,7 +36914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(959), 43, + ACTIONS(636), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37007,16 +36958,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1068] = 3, + [980] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(961), 18, + ACTIONS(610), 18, + 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, sym_glimmer_opening_tag, @@ -37030,7 +36981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(963), 43, + ACTIONS(612), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37074,11 +37025,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1138] = 3, + [1050] = 4, + ACTIONS(971), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(965), 17, + ACTIONS(508), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37096,7 +37049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(967), 44, + ACTIONS(510), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37118,7 +37071,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_LT, anon_sym_class, @@ -37141,15 +37093,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1208] = 5, - ACTIONS(973), 1, - anon_sym_else, - STATE(366), 1, - sym_else_clause, + [1122] = 4, + ACTIONS(582), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(969), 17, + ACTIONS(574), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37167,7 +37117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(971), 42, + ACTIONS(576), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37175,6 +37125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -37210,18 +37161,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1282] = 4, + [1194] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(979), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(975), 16, + ACTIONS(973), 18, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACK, sym_glimmer_opening_tag, anon_sym_DQUOTE, @@ -37234,7 +37184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(977), 43, + ACTIONS(975), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37278,11 +37228,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1354] = 3, + [1264] = 4, + ACTIONS(528), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(981), 17, + ACTIONS(520), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37300,7 +37252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(983), 44, + ACTIONS(522), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37322,7 +37274,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_LT, anon_sym_class, @@ -37345,13 +37296,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1424] = 4, - ACTIONS(614), 1, - sym__automatic_semicolon, + [1336] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(606), 17, + ACTIONS(977), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37369,7 +37319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(608), 43, + ACTIONS(979), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37413,30 +37363,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1496] = 11, - ACTIONS(831), 1, + [1406] = 11, + ACTIONS(833), 1, anon_sym_EQ_GT, - ACTIONS(841), 1, + ACTIONS(843), 1, anon_sym_EQ, - ACTIONS(861), 1, - anon_sym_function, - ACTIONS(889), 1, + ACTIONS(883), 1, anon_sym_LPAREN, - ACTIONS(922), 1, + ACTIONS(904), 1, sym_identifier, - STATE(1688), 1, + ACTIONS(943), 1, + anon_sym_function, + STATE(1622), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(924), 6, + ACTIONS(906), 6, anon_sym_export, anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(807), 13, + ACTIONS(809), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_SEMI, @@ -37450,7 +37400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(833), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37466,7 +37416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 21, + ACTIONS(820), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37488,13 +37438,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1582] = 4, - ACTIONS(566), 1, + [1492] = 4, + ACTIONS(552), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(558), 17, + ACTIONS(544), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37512,7 +37462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(560), 43, + ACTIONS(546), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37556,16 +37506,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1654] = 3, + [1564] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(985), 18, - sym__automatic_semicolon, + ACTIONS(981), 18, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK, sym_glimmer_opening_tag, @@ -37579,7 +37529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(987), 43, + ACTIONS(983), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37623,12 +37573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1724] = 3, + [1634] = 4, + ACTIONS(624), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(620), 18, - sym__automatic_semicolon, + ACTIONS(616), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37646,7 +37597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(622), 43, + ACTIONS(618), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37690,18 +37641,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1794] = 4, - ACTIONS(556), 1, - sym__automatic_semicolon, + [1706] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(548), 17, + ACTIONS(989), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(985), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, sym_glimmer_opening_tag, anon_sym_DQUOTE, @@ -37714,7 +37665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(550), 43, + ACTIONS(987), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37758,13 +37709,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1866] = 4, - ACTIONS(989), 1, + [1778] = 4, + ACTIONS(592), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(506), 17, + ACTIONS(584), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37782,7 +37733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(508), 43, + ACTIONS(586), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37826,12 +37777,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1938] = 3, + [1850] = 11, + ACTIONS(883), 1, + anon_sym_LPAREN, + ACTIONS(886), 1, + anon_sym_EQ, + ACTIONS(888), 1, + anon_sym_function, + ACTIONS(908), 1, + sym_identifier, + ACTIONS(917), 1, + anon_sym_EQ_GT, + STATE(1649), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(624), 18, + ACTIONS(910), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(809), 13, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + 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(835), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(820), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [1936] = 4, + ACTIONS(991), 1, sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(610), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37849,7 +37876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(626), 43, + ACTIONS(612), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37897,7 +37924,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(991), 17, + ACTIONS(993), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37915,7 +37942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(993), 43, + ACTIONS(995), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37963,7 +37990,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(995), 17, + ACTIONS(997), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37981,7 +38008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(997), 43, + ACTIONS(999), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38029,7 +38056,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(999), 17, + ACTIONS(1001), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38047,7 +38074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1001), 43, + ACTIONS(1003), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38095,7 +38122,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1003), 17, + ACTIONS(1005), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38113,7 +38140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1005), 43, + ACTIONS(1007), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38161,7 +38188,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1007), 17, + ACTIONS(1009), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38179,7 +38206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1009), 43, + ACTIONS(1011), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38227,7 +38254,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1011), 17, + ACTIONS(1013), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38245,7 +38272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1013), 43, + ACTIONS(1015), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38293,7 +38320,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1015), 17, + ACTIONS(1017), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38311,7 +38338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1017), 43, + ACTIONS(1019), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38359,7 +38386,205 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1019), 17, + ACTIONS(1021), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1023), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_LT, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + 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, + [2560] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1025), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1027), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_LT, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + 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, + [2629] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1029), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1031), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_LT, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + 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, + [2698] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1025), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38377,7 +38602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1021), 43, + ACTIONS(1027), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38421,11 +38646,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2560] = 3, + [2767] = 13, + ACTIONS(833), 1, + anon_sym_EQ_GT, + ACTIONS(843), 1, + anon_sym_EQ, + ACTIONS(931), 1, + anon_sym_LBRACE, + ACTIONS(933), 1, + anon_sym_LBRACK, + ACTIONS(945), 1, + anon_sym_in, + ACTIONS(948), 1, + anon_sym_of, + ACTIONS(1033), 1, + sym_identifier, + STATE(1187), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1023), 17, + STATE(1074), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(809), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + sym_optional_chain, + 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(835), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(820), 20, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [2856] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1025), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38443,7 +38744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1025), 43, + ACTIONS(1027), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38487,11 +38788,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2629] = 3, + [2925] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1027), 17, + ACTIONS(1025), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38509,7 +38810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1029), 43, + ACTIONS(1027), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38553,11 +38854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2698] = 3, + [2994] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1031), 17, + ACTIONS(1035), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38575,7 +38876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1033), 43, + ACTIONS(1037), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38619,11 +38920,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2767] = 3, + [3063] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1035), 17, + ACTIONS(1039), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38641,7 +38942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1037), 43, + ACTIONS(1041), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38685,77 +38986,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2836] = 3, + [3132] = 11, + ACTIONS(883), 1, + anon_sym_LPAREN, + ACTIONS(886), 1, + anon_sym_EQ, + ACTIONS(888), 1, + anon_sym_function, + ACTIONS(1043), 1, + sym_identifier, + ACTIONS(1047), 1, + anon_sym_EQ_GT, + STATE(1682), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1035), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1045), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(809), 11, + sym__ternary_qmark, anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + sym_optional_chain, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1037), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, + ACTIONS(835), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(820), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_of, anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [3217] = 11, + ACTIONS(883), 1, + anon_sym_LPAREN, + ACTIONS(888), 1, + anon_sym_function, + ACTIONS(1043), 1, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, + ACTIONS(1047), 1, + anon_sym_EQ_GT, + ACTIONS(1049), 1, + anon_sym_EQ, + STATE(1682), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1045), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - [2905] = 3, + ACTIONS(809), 11, + sym__ternary_qmark, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + 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(835), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(820), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_of, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [3302] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1039), 17, + ACTIONS(1051), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38773,7 +39156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1041), 43, + ACTIONS(1053), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38817,11 +39200,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2974] = 3, + [3371] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1043), 17, + ACTIONS(1055), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38839,7 +39222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1045), 43, + ACTIONS(1057), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38883,11 +39266,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3043] = 3, + [3440] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1035), 17, + ACTIONS(993), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38905,7 +39288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1037), 43, + ACTIONS(995), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38949,11 +39332,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3112] = 3, + [3509] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1035), 17, + ACTIONS(1059), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38971,7 +39354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1037), 43, + ACTIONS(1061), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39015,11 +39398,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3181] = 3, + [3578] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1035), 17, + ACTIONS(1055), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39037,7 +39420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1037), 43, + ACTIONS(1057), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39081,11 +39464,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3250] = 3, + [3647] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1035), 17, + ACTIONS(1063), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39103,7 +39486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1037), 43, + ACTIONS(1065), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39147,11 +39530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3319] = 3, + [3716] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1047), 17, + ACTIONS(1067), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39169,7 +39552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1049), 43, + ACTIONS(1069), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39213,11 +39596,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3388] = 3, + [3785] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1051), 17, + ACTIONS(1071), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39235,7 +39618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1053), 43, + ACTIONS(1073), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39279,11 +39662,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3457] = 3, + [3854] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1051), 17, + ACTIONS(1075), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39301,7 +39684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1053), 43, + ACTIONS(1077), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39345,11 +39728,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3526] = 3, + [3923] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1055), 17, + ACTIONS(1079), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39367,7 +39750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1057), 43, + ACTIONS(1081), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39411,86 +39794,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3595] = 12, - ACTIONS(831), 1, - anon_sym_EQ_GT, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(869), 1, - anon_sym_COLON, - ACTIONS(910), 1, - sym_identifier, - ACTIONS(912), 1, - anon_sym_LBRACE, - ACTIONS(914), 1, - anon_sym_LBRACK, - STATE(1256), 1, - sym_variable_declarator, + [3992] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1177), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(807), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - sym_optional_chain, - 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(833), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [3682] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1059), 17, + ACTIONS(1083), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39508,7 +39816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1061), 43, + ACTIONS(1085), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39552,11 +39860,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3751] = 3, + [4061] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1063), 17, + ACTIONS(1087), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39574,7 +39882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1065), 43, + ACTIONS(1089), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39618,11 +39926,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3820] = 3, + [4130] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1067), 17, + ACTIONS(1091), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39640,7 +39948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1069), 43, + ACTIONS(1093), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39684,11 +39992,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3889] = 3, + [4199] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1071), 17, + ACTIONS(1025), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39706,7 +40014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1073), 43, + ACTIONS(1027), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39750,11 +40058,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3958] = 3, + [4268] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1075), 17, + ACTIONS(1025), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39772,7 +40080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1077), 43, + ACTIONS(1027), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39816,11 +40124,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4027] = 3, + [4337] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1079), 17, + ACTIONS(1095), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39838,7 +40146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1081), 43, + ACTIONS(1097), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39882,87 +40190,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4096] = 13, - ACTIONS(889), 1, - anon_sym_LPAREN, - ACTIONS(894), 1, - anon_sym_function, - ACTIONS(898), 1, - anon_sym_EQ, - ACTIONS(926), 1, - sym_identifier, - ACTIONS(935), 1, - anon_sym_EQ_GT, - ACTIONS(941), 1, - anon_sym_in, - ACTIONS(944), 1, - anon_sym_of, - STATE(1616), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(928), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(807), 11, - sym__ternary_qmark, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - 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(833), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 20, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [4185] = 3, + [4406] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1083), 17, + ACTIONS(1099), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39980,7 +40212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1085), 43, + ACTIONS(1101), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40024,11 +40256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4254] = 3, + [4475] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1087), 17, + ACTIONS(1103), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40046,7 +40278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1089), 43, + ACTIONS(1105), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40090,11 +40322,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4323] = 3, + [4544] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1091), 17, + ACTIONS(1107), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40112,7 +40344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1093), 43, + ACTIONS(1109), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40156,11 +40388,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4392] = 3, + [4613] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1095), 17, + ACTIONS(1111), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40178,7 +40410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1097), 43, + ACTIONS(1113), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40222,11 +40454,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4461] = 3, + [4682] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1099), 17, + ACTIONS(1115), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40244,7 +40476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1101), 43, + ACTIONS(1117), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40288,11 +40520,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4530] = 3, + [4751] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1103), 17, + ACTIONS(1119), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40310,7 +40542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1105), 43, + ACTIONS(1121), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40354,87 +40586,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4599] = 13, - ACTIONS(831), 1, - anon_sym_EQ_GT, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(912), 1, - anon_sym_LBRACE, - ACTIONS(914), 1, - anon_sym_LBRACK, - ACTIONS(941), 1, - anon_sym_in, - ACTIONS(944), 1, - anon_sym_of, - ACTIONS(1107), 1, - sym_identifier, - STATE(1256), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1079), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(807), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - sym_optional_chain, - 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(833), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 20, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [4688] = 3, + [4820] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1109), 17, + ACTIONS(1123), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40452,7 +40608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1111), 43, + ACTIONS(1125), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40496,29 +40652,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4757] = 12, - ACTIONS(831), 1, + [4889] = 12, + ACTIONS(833), 1, anon_sym_EQ_GT, - ACTIONS(839), 1, - anon_sym_COLON, - ACTIONS(841), 1, + ACTIONS(843), 1, anon_sym_EQ, - ACTIONS(910), 1, + ACTIONS(847), 1, + anon_sym_COLON, + ACTIONS(929), 1, sym_identifier, - ACTIONS(912), 1, + ACTIONS(931), 1, anon_sym_LBRACE, - ACTIONS(914), 1, + ACTIONS(933), 1, anon_sym_LBRACK, - STATE(1256), 1, + STATE(1187), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1177), 3, + STATE(1149), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(807), 14, + ACTIONS(809), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -40533,7 +40689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(833), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -40549,7 +40705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 21, + ACTIONS(820), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40571,11 +40727,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [4844] = 3, + [4976] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1113), 17, + ACTIONS(1127), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40593,7 +40749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1115), 43, + ACTIONS(1129), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40637,11 +40793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4913] = 3, + [5045] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1117), 17, + ACTIONS(1131), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40659,7 +40815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1119), 43, + ACTIONS(1133), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40703,11 +40859,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4982] = 3, + [5114] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1121), 17, + ACTIONS(1127), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40725,7 +40881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1123), 43, + ACTIONS(1129), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40769,11 +40925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5051] = 3, + [5183] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1121), 17, + ACTIONS(1135), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40791,7 +40947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1123), 43, + ACTIONS(1137), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40835,11 +40991,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5120] = 3, + [5252] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1125), 17, + ACTIONS(1139), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40857,7 +41013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1127), 43, + ACTIONS(1141), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40901,143 +41057,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5189] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1129), 17, - ts_builtin_sym_end, + [5321] = 12, + ACTIONS(833), 1, + anon_sym_EQ_GT, + ACTIONS(841), 1, + anon_sym_COLON, + ACTIONS(843), 1, + anon_sym_EQ, + ACTIONS(929), 1, + sym_identifier, + ACTIONS(931), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(933), 1, anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1131), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - 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, - [5258] = 3, + STATE(1187), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1133), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(1149), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(809), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + sym_optional_chain, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1135), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, + ACTIONS(835), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(820), 21, + anon_sym_STAR, + anon_sym_in, anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - 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, - [5327] = 3, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [5408] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1137), 17, + ACTIONS(1143), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41055,7 +41154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1139), 43, + ACTIONS(1145), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41099,11 +41198,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5396] = 3, + [5477] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1141), 17, + ACTIONS(1147), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41121,7 +41220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1143), 43, + ACTIONS(1149), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41165,11 +41264,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5465] = 3, + [5546] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1145), 17, + ACTIONS(1151), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41187,7 +41286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1147), 43, + ACTIONS(1153), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41231,11 +41330,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5534] = 3, + [5615] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1149), 17, + ACTIONS(1155), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41253,7 +41352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1151), 43, + ACTIONS(1157), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41297,11 +41396,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5603] = 3, + [5684] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1153), 17, + ACTIONS(1159), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41319,7 +41418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1155), 43, + ACTIONS(1161), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41363,11 +41462,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5672] = 3, + [5753] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1157), 17, + ACTIONS(1163), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41385,7 +41484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1159), 43, + ACTIONS(1165), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41429,11 +41528,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5741] = 3, + [5822] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1161), 17, + ACTIONS(1167), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41451,7 +41550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1163), 43, + ACTIONS(1169), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41495,11 +41594,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5810] = 3, + [5891] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1165), 17, + ACTIONS(1171), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41517,7 +41616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1167), 43, + ACTIONS(1173), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41561,11 +41660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5879] = 3, + [5960] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1165), 17, + ACTIONS(1175), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41583,7 +41682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1167), 43, + ACTIONS(1177), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41627,11 +41726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5948] = 3, + [6029] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1169), 17, + ACTIONS(1179), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41649,7 +41748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1171), 43, + ACTIONS(1181), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41693,11 +41792,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6017] = 3, + [6098] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1173), 17, + ACTIONS(1183), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41715,7 +41814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1175), 43, + ACTIONS(1185), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41759,11 +41858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6086] = 3, + [6167] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1177), 17, + ACTIONS(1187), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41781,7 +41880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1179), 43, + ACTIONS(1189), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41825,30 +41924,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6155] = 11, - ACTIONS(889), 1, + [6236] = 13, + ACTIONS(883), 1, anon_sym_LPAREN, - ACTIONS(894), 1, + ACTIONS(886), 1, + anon_sym_EQ, + ACTIONS(888), 1, anon_sym_function, - ACTIONS(1181), 1, + ACTIONS(908), 1, sym_identifier, - ACTIONS(1185), 1, - anon_sym_EQ, - ACTIONS(1187), 1, + ACTIONS(917), 1, anon_sym_EQ_GT, - STATE(1678), 1, + ACTIONS(945), 1, + anon_sym_in, + ACTIONS(948), 1, + anon_sym_of, + STATE(1649), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1183), 6, + ACTIONS(910), 6, anon_sym_export, anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(807), 11, + ACTIONS(809), 11, sym__ternary_qmark, anon_sym_LBRACK, anon_sym_DOT, @@ -41860,7 +41963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(833), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -41876,10 +41979,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(818), 22, + ACTIONS(820), 20, anon_sym_STAR, - anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -41899,11 +42000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [6240] = 3, + [6325] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1189), 17, + ACTIONS(1191), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41921,7 +42022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1191), 43, + ACTIONS(1193), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41965,85 +42066,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6309] = 11, - ACTIONS(889), 1, - anon_sym_LPAREN, - ACTIONS(894), 1, - anon_sym_function, - ACTIONS(898), 1, - anon_sym_EQ, - ACTIONS(1181), 1, - sym_identifier, - ACTIONS(1187), 1, - anon_sym_EQ_GT, - STATE(1678), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1183), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(807), 11, - sym__ternary_qmark, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - 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(833), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 22, - anon_sym_STAR, - anon_sym_in, - anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, [6394] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1193), 17, + ACTIONS(1195), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42061,7 +42088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1195), 43, + ACTIONS(1197), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42109,7 +42136,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1197), 17, + ACTIONS(1199), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42127,7 +42154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1199), 43, + ACTIONS(1201), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42172,26 +42199,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, [6532] = 11, - ACTIONS(831), 1, + ACTIONS(833), 1, anon_sym_EQ_GT, - ACTIONS(841), 1, + ACTIONS(843), 1, anon_sym_EQ, - ACTIONS(910), 1, + ACTIONS(929), 1, sym_identifier, - ACTIONS(912), 1, + ACTIONS(931), 1, anon_sym_LBRACE, - ACTIONS(914), 1, + ACTIONS(933), 1, anon_sym_LBRACK, - STATE(1256), 1, + STATE(1187), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1177), 3, + STATE(1149), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(807), 13, + ACTIONS(809), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -42205,7 +42232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(833), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42221,7 +42248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 21, + ACTIONS(820), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42244,24 +42271,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, [6615] = 11, - ACTIONS(820), 1, + ACTIONS(822), 1, anon_sym_COLON, - ACTIONS(835), 1, + ACTIONS(837), 1, anon_sym_RBRACE, - ACTIONS(1205), 1, + ACTIONS(1207), 1, anon_sym_LPAREN, - ACTIONS(1208), 1, - anon_sym_EQ, ACTIONS(1210), 1, + anon_sym_EQ, + ACTIONS(1212), 1, anon_sym_EQ_GT, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1301), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1203), 15, + ACTIONS(1205), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -42277,7 +42304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1212), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42293,7 +42320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1201), 20, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42315,24 +42342,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, [6697] = 11, - ACTIONS(809), 1, + ACTIONS(811), 1, anon_sym_RBRACE, - ACTIONS(820), 1, + ACTIONS(822), 1, anon_sym_COLON, - ACTIONS(1205), 1, + ACTIONS(1207), 1, anon_sym_LPAREN, - ACTIONS(1208), 1, - anon_sym_EQ, ACTIONS(1210), 1, + anon_sym_EQ, + ACTIONS(1212), 1, anon_sym_EQ_GT, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1340), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1203), 15, + ACTIONS(1205), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -42348,7 +42375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1212), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42364,7 +42391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1201), 20, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42386,24 +42413,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, [6779] = 11, - ACTIONS(820), 1, + ACTIONS(822), 1, anon_sym_COLON, - ACTIONS(837), 1, + ACTIONS(839), 1, anon_sym_RBRACE, - ACTIONS(1205), 1, + ACTIONS(1207), 1, anon_sym_LPAREN, - ACTIONS(1208), 1, - anon_sym_EQ, ACTIONS(1210), 1, + anon_sym_EQ, + ACTIONS(1212), 1, anon_sym_EQ_GT, - STATE(1305), 1, - aux_sym_object_repeat1, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, + STATE(1340), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1203), 15, + ACTIONS(1205), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -42419,7 +42446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1212), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42435,7 +42462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1201), 20, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42460,7 +42487,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 21, + ACTIONS(1216), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -42482,7 +42509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1216), 35, + ACTIONS(1218), 35, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -42518,14 +42545,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [6926] = 3, + [6926] = 12, + ACTIONS(886), 1, + anon_sym_EQ, + ACTIONS(917), 1, + anon_sym_EQ_GT, + ACTIONS(945), 1, + anon_sym_in, + ACTIONS(948), 1, + anon_sym_of, + ACTIONS(1220), 1, + sym_identifier, + ACTIONS(1222), 1, + anon_sym_LBRACE, + ACTIONS(1224), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1218), 21, + STATE(1388), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(809), 11, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_DOT, + sym_optional_chain, + 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(835), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(820), 20, anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -42544,19 +42615,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1220), 35, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_instanceof, + [7009] = 5, + ACTIONS(1227), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42572,22 +42638,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [6991] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1222), 21, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -42606,7 +42659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1224), 35, + ACTIONS(1205), 20, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -42619,21 +42672,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -42642,11 +42680,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7056] = 3, + [7078] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1226), 21, + ACTIONS(979), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -42668,7 +42706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1228), 35, + ACTIONS(977), 35, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -42704,11 +42742,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7121] = 3, + [7143] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1230), 21, + ACTIONS(1229), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -42730,7 +42768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1232), 35, + ACTIONS(1231), 35, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -42766,11 +42804,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7186] = 3, + [7208] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1234), 21, + ACTIONS(1233), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -42792,7 +42830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1236), 35, + ACTIONS(1235), 35, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -42828,58 +42866,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7251] = 12, - ACTIONS(898), 1, - anon_sym_EQ, - ACTIONS(935), 1, - anon_sym_EQ_GT, - ACTIONS(941), 1, - anon_sym_in, - ACTIONS(944), 1, - anon_sym_of, - ACTIONS(1238), 1, - sym_identifier, - ACTIONS(1240), 1, - anon_sym_LBRACE, - ACTIONS(1242), 1, - anon_sym_LBRACK, + [7273] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1539), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(807), 11, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_DOT, - sym_optional_chain, - 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(833), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 20, + ACTIONS(1237), 21, anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -42898,14 +42892,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [7334] = 5, - ACTIONS(1245), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1212), 15, + ACTIONS(1239), 35, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42921,9 +42920,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1201), 20, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [7338] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1241), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -42942,7 +42954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1203), 20, + ACTIONS(1243), 35, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -42955,6 +42967,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -42967,7 +42994,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(987), 21, + ACTIONS(1245), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -42989,7 +43016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(985), 35, + ACTIONS(1247), 35, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -43029,7 +43056,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(985), 15, + ACTIONS(1251), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -43045,7 +43072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(987), 40, + ACTIONS(1249), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -43087,78 +43114,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, [7532] = 6, - ACTIONS(896), 1, - anon_sym_EQ_GT, - ACTIONS(898), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(833), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(807), 18, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(818), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7602] = 6, - ACTIONS(892), 1, + ACTIONS(1227), 1, anon_sym_EQ, - ACTIONS(896), 1, + ACTIONS(1253), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(833), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43174,7 +43137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(807), 18, + ACTIONS(1205), 18, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -43193,7 +43156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(818), 20, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43214,79 +43177,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7672] = 6, - ACTIONS(1247), 1, - anon_sym_EQ, - ACTIONS(1249), 1, + [7602] = 6, + ACTIONS(1253), 1, anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1212), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 18, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(1201), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7742] = 6, - ACTIONS(1245), 1, + ACTIONS(1255), 1, anon_sym_EQ, - ACTIONS(1249), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1212), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43302,7 +43201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 18, + ACTIONS(1205), 18, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -43321,7 +43220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 20, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43342,11 +43241,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7812] = 3, + [7672] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1253), 15, + ACTIONS(1259), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -43362,7 +43261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1251), 40, + ACTIONS(1257), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -43403,11 +43302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7876] = 3, + [7736] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1257), 15, + ACTIONS(1263), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -43423,7 +43322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1255), 40, + ACTIONS(1261), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -43464,11 +43363,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, + [7800] = 6, + ACTIONS(886), 1, + anon_sym_EQ, + ACTIONS(890), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(835), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(809), 18, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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(820), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7870] = 6, + ACTIONS(890), 1, + anon_sym_EQ_GT, + ACTIONS(892), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(835), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(809), 18, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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(820), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, [7940] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1261), 15, + ACTIONS(1251), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -43484,7 +43511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1259), 40, + ACTIONS(1249), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -43529,7 +43556,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1265), 15, + ACTIONS(1267), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -43545,7 +43572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1263), 40, + ACTIONS(1265), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -43590,7 +43617,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1265), 15, + ACTIONS(977), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -43606,7 +43633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1263), 40, + ACTIONS(979), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -43651,7 +43678,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1265), 15, + ACTIONS(1251), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -43667,7 +43694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1263), 40, + ACTIONS(1249), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -43712,7 +43739,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1265), 15, + ACTIONS(1251), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -43728,7 +43755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1263), 40, + ACTIONS(1249), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -43769,80 +43796,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8260] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1218), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1220), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [8323] = 7, - ACTIONS(932), 1, - anon_sym_EQ, - ACTIONS(935), 1, + [8260] = 7, + ACTIONS(890), 1, anon_sym_EQ_GT, + ACTIONS(926), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(930), 4, + ACTIONS(923), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(807), 13, + ACTIONS(809), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -43856,7 +43823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(833), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43872,7 +43839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 20, + ACTIONS(820), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43893,102 +43860,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8394] = 8, - ACTIONS(831), 1, - anon_sym_EQ_GT, - ACTIONS(841), 1, + [8331] = 7, + ACTIONS(1271), 1, anon_sym_EQ, - ACTIONS(941), 1, - anon_sym_in, - ACTIONS(1267), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(833), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(807), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(818), 19, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8467] = 6, - ACTIONS(898), 1, - anon_sym_EQ, - ACTIONS(908), 1, + ACTIONS(1274), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(833), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(807), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1269), 4, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1205), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -44000,36 +43887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(818), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8536] = 6, - ACTIONS(831), 1, - anon_sym_EQ_GT, - ACTIONS(898), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(833), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44045,25 +43903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(807), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(818), 20, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44084,15 +43924,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8605] = 6, - ACTIONS(1245), 1, - anon_sym_EQ, - ACTIONS(1269), 1, + [8402] = 7, + ACTIONS(847), 1, + anon_sym_COLON, + ACTIONS(1212), 1, anon_sym_EQ_GT, + ACTIONS(1276), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1212), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44108,12 +43950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 17, + ACTIONS(1205), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -44126,7 +43967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 20, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44147,15 +43988,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8674] = 6, - ACTIONS(908), 1, + [8473] = 8, + ACTIONS(833), 1, anon_sym_EQ_GT, - ACTIONS(946), 1, + ACTIONS(843), 1, anon_sym_EQ, + ACTIONS(945), 1, + anon_sym_in, + ACTIONS(1278), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(833), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44171,12 +44016,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(807), 17, + ACTIONS(809), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -44189,9 +44033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(818), 20, + ACTIONS(820), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -44210,34 +44053,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8743] = 7, - ACTIONS(1245), 1, - anon_sym_EQ, - ACTIONS(1273), 1, - anon_sym_EQ_GT, + [8546] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1271), 4, + ACTIONS(1229), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1231), 33, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1203), 13, - sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(1212), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44253,36 +44105,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1201), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8814] = 6, - ACTIONS(1269), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8609] = 6, + ACTIONS(1212), 1, anon_sym_EQ_GT, - ACTIONS(1275), 1, + ACTIONS(1276), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1212), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44298,12 +44137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 17, + ACTIONS(1205), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -44316,7 +44155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 20, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44337,19 +44176,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8883] = 8, - ACTIONS(1210), 1, - anon_sym_EQ_GT, - ACTIONS(1277), 1, - anon_sym_in, + [8678] = 6, ACTIONS(1280), 1, - anon_sym_of, - ACTIONS(1282), 1, anon_sym_EQ, + ACTIONS(1282), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1212), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44365,11 +44200,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 16, + ACTIONS(1205), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -44382,8 +44218,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 19, + ACTIONS(1203), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -44402,15 +44239,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8956] = 6, - ACTIONS(831), 1, + [8747] = 6, + ACTIONS(833), 1, anon_sym_EQ_GT, - ACTIONS(841), 1, + ACTIONS(843), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(833), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44426,7 +44263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(807), 17, + ACTIONS(809), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -44444,7 +44281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(818), 20, + ACTIONS(820), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44465,17 +44302,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9025] = 7, - ACTIONS(839), 1, - anon_sym_COLON, - ACTIONS(1210), 1, + [8816] = 8, + ACTIONS(1212), 1, anon_sym_EQ_GT, - ACTIONS(1282), 1, + ACTIONS(1276), 1, anon_sym_EQ, + ACTIONS(1284), 1, + anon_sym_in, + ACTIONS(1287), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1212), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44491,7 +44330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 16, + ACTIONS(1205), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -44508,9 +44347,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 20, + ACTIONS(1203), 19, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [8889] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1216), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -44529,17 +44393,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9096] = 7, - ACTIONS(831), 1, + ACTIONS(1218), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8952] = 7, + ACTIONS(833), 1, anon_sym_EQ_GT, - ACTIONS(839), 1, - anon_sym_COLON, - ACTIONS(841), 1, + ACTIONS(843), 1, anon_sym_EQ, + ACTIONS(847), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(833), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44555,7 +44453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(807), 16, + ACTIONS(809), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -44572,7 +44470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(818), 20, + ACTIONS(820), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44593,13 +44491,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9167] = 5, - ACTIONS(1245), 1, + [9023] = 7, + ACTIONS(1253), 1, + anon_sym_EQ_GT, + ACTIONS(1292), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1212), 15, + ACTIONS(1289), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1205), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44615,26 +44534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(1201), 20, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44655,11 +44555,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9234] = 3, + [9094] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1222), 21, + ACTIONS(979), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -44681,7 +44581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1224), 33, + ACTIONS(977), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -44715,43 +44615,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9297] = 3, + [9157] = 5, + ACTIONS(1255), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(987), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(985), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44767,31 +44637,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [9360] = 7, - ACTIONS(1273), 1, - anon_sym_EQ_GT, - ACTIONS(1286), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1284), 4, + ACTIONS(1205), 18, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1203), 13, - sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_LT_EQ, @@ -44802,23 +44656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1212), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1201), 20, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44839,22 +44677,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9431] = 7, - ACTIONS(896), 1, + [9224] = 6, + ACTIONS(1212), 1, anon_sym_EQ_GT, - ACTIONS(919), 1, + ACTIONS(1227), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(916), 4, + ACTIONS(1214), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1205), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(807), 13, - sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -44866,7 +44719,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(833), 15, + ACTIONS(1203), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9293] = 6, + ACTIONS(1227), 1, + anon_sym_EQ, + ACTIONS(1282), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44882,7 +44764,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 20, + ACTIONS(1205), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44903,20 +44803,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9502] = 7, - ACTIONS(1249), 1, - anon_sym_EQ_GT, - ACTIONS(1292), 1, + [9362] = 7, + ACTIONS(1227), 1, anon_sym_EQ, + ACTIONS(1274), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1289), 4, + ACTIONS(1295), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1203), 13, + ACTIONS(1205), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -44930,7 +44830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1212), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44946,7 +44846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1201), 20, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44967,43 +44867,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9573] = 3, + [9433] = 7, + ACTIONS(841), 1, + anon_sym_COLON, + ACTIONS(1212), 1, + anon_sym_EQ_GT, + ACTIONS(1276), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1216), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45019,6 +44893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(1205), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -45027,14 +44910,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9636] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1230), 21, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -45053,49 +44931,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1232), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [9699] = 6, - ACTIONS(1210), 1, + [9504] = 7, + ACTIONS(833), 1, anon_sym_EQ_GT, - ACTIONS(1245), 1, + ACTIONS(841), 1, + anon_sym_COLON, + ACTIONS(843), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1212), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45111,11 +44957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 17, + ACTIONS(809), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -45129,7 +44974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 20, + ACTIONS(820), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45150,11 +44995,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9768] = 3, + [9575] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1226), 21, + ACTIONS(1245), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -45176,7 +45021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1228), 33, + ACTIONS(1247), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -45210,11 +45055,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9831] = 3, + [9638] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1234), 21, + ACTIONS(1241), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -45236,7 +45081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1236), 33, + ACTIONS(1243), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -45270,13 +45115,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9894] = 5, - ACTIONS(1247), 1, - anon_sym_EQ, + [9701] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1212), 15, + ACTIONS(1237), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1239), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45292,17 +45167,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(1203), 18, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -45311,9 +45175,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 20, + [9764] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1233), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -45332,17 +45201,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9961] = 7, - ACTIONS(869), 1, - anon_sym_COLON, - ACTIONS(1210), 1, - anon_sym_EQ_GT, - ACTIONS(1282), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1212), 15, + ACTIONS(1235), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45358,15 +45227,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(1203), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -45375,38 +45235,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10032] = 7, - ACTIONS(831), 1, + [9827] = 6, + ACTIONS(833), 1, anon_sym_EQ_GT, - ACTIONS(841), 1, + ACTIONS(886), 1, anon_sym_EQ, - ACTIONS(869), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(833), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45422,10 +45259,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(807), 16, + ACTIONS(809), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -45439,7 +45277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(818), 20, + ACTIONS(820), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45460,15 +45298,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10103] = 6, - ACTIONS(1210), 1, - anon_sym_EQ_GT, - ACTIONS(1282), 1, + [9896] = 6, + ACTIONS(886), 1, anon_sym_EQ, + ACTIONS(941), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1212), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45484,12 +45322,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 17, + ACTIONS(809), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -45502,7 +45340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 20, + ACTIONS(820), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45523,20 +45361,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10172] = 7, - ACTIONS(898), 1, + [9965] = 7, + ACTIONS(886), 1, anon_sym_EQ, - ACTIONS(935), 1, + ACTIONS(917), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(937), 4, + ACTIONS(919), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(807), 13, + ACTIONS(809), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -45550,7 +45388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(833), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45566,7 +45404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 20, + ACTIONS(820), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45587,82 +45425,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10243] = 7, - ACTIONS(1277), 1, - anon_sym_in, - ACTIONS(1280), 1, - anon_sym_of, - ACTIONS(1282), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1212), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(1201), 19, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10313] = 7, - ACTIONS(892), 1, + [10036] = 7, + ACTIONS(914), 1, anon_sym_EQ, - ACTIONS(896), 1, + ACTIONS(917), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(948), 3, + ACTIONS(912), 4, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(807), 13, + ACTIONS(809), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -45676,7 +45452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(833), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45692,7 +45468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 20, + ACTIONS(820), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45713,13 +45489,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10383] = 5, - ACTIONS(1282), 1, + [10107] = 5, + ACTIONS(1227), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1212), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45735,12 +45511,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 17, + ACTIONS(1205), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -45753,69 +45530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10449] = 6, - ACTIONS(1292), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1289), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1203), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(1212), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1201), 20, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45836,13 +45551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10517] = 5, - ACTIONS(1275), 1, + [10174] = 6, + ACTIONS(939), 1, anon_sym_EQ, + ACTIONS(941), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1212), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45858,7 +45575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 17, + ACTIONS(809), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -45876,7 +45593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1201), 20, + ACTIONS(820), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45897,18 +45614,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10583] = 6, - ACTIONS(1286), 1, + [10243] = 6, + ACTIONS(1227), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1284), 4, + ACTIONS(1295), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1203), 13, + ACTIONS(1205), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -45922,7 +45639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1212), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45938,7 +45655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1201), 20, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45959,18 +45676,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10651] = 6, - ACTIONS(1245), 1, + [10311] = 6, + ACTIONS(1271), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1271), 4, + ACTIONS(1269), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1203), 13, + ACTIONS(1205), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -45984,7 +45701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1212), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46000,7 +45717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1201), 20, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46021,19 +45738,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10719] = 7, - ACTIONS(1247), 1, + [10379] = 6, + ACTIONS(1292), 1, anon_sym_EQ, - ACTIONS(1249), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1295), 3, + ACTIONS(1289), 4, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1203), 13, + ACTIONS(1205), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -46047,7 +45763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1212), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46063,7 +45779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1201), 20, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46084,33 +45800,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10789] = 8, - ACTIONS(1249), 1, - anon_sym_EQ_GT, - ACTIONS(1284), 1, - anon_sym_COMMA, - ACTIONS(1289), 1, - anon_sym_RBRACK, - ACTIONS(1292), 1, + [10447] = 7, + ACTIONS(1276), 1, anon_sym_EQ, + ACTIONS(1284), 1, + anon_sym_in, + ACTIONS(1287), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1203), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(1212), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46126,40 +45826,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1201), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10860] = 6, - ACTIONS(898), 1, - anon_sym_EQ, - ACTIONS(935), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(807), 15, + ACTIONS(1205), 16, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46171,25 +45843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(833), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 20, + ACTIONS(1203), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -46208,33 +45863,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10927] = 8, - ACTIONS(896), 1, - anon_sym_EQ_GT, - ACTIONS(916), 1, - anon_sym_RBRACK, - ACTIONS(919), 1, + [10517] = 5, + ACTIONS(1280), 1, anon_sym_EQ, - ACTIONS(930), 1, - anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(807), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(833), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46250,40 +45885,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10998] = 6, - ACTIONS(1245), 1, - anon_sym_EQ, - ACTIONS(1273), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1203), 15, + ACTIONS(1205), 17, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46295,23 +45903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1212), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1201), 20, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46332,17 +45924,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11065] = 6, - ACTIONS(1247), 1, + [10583] = 7, + ACTIONS(890), 1, + anon_sym_EQ_GT, + ACTIONS(892), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1295), 3, + ACTIONS(954), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(1203), 13, + ACTIONS(809), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -46356,7 +45950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1212), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46372,7 +45966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1201), 20, + ACTIONS(820), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46393,19 +45987,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11132] = 8, - ACTIONS(1245), 1, - anon_sym_EQ, - ACTIONS(1273), 1, + [10653] = 7, + ACTIONS(1253), 1, anon_sym_EQ_GT, - ACTIONS(1277), 1, - anon_sym_in, - ACTIONS(1280), 1, - anon_sym_of, + ACTIONS(1255), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1203), 13, + ACTIONS(1297), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1205), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -46419,7 +46013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1212), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46435,8 +46029,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(1201), 19, + ACTIONS(1203), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -46455,31 +46050,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11202] = 7, - ACTIONS(1284), 1, - anon_sym_COMMA, - ACTIONS(1289), 1, - anon_sym_RBRACK, - ACTIONS(1292), 1, + [10723] = 5, + ACTIONS(1276), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1203), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(1212), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46495,7 +46072,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1201), 20, + ACTIONS(1205), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46516,19 +46111,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11270] = 8, - ACTIONS(898), 1, - anon_sym_EQ, - ACTIONS(935), 1, + [10789] = 8, + ACTIONS(1253), 1, anon_sym_EQ_GT, - ACTIONS(941), 1, - anon_sym_in, - ACTIONS(1267), 1, - anon_sym_of, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(1289), 1, + anon_sym_RBRACK, + ACTIONS(1292), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(807), 13, + ACTIONS(1205), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -46542,7 +46137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(833), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46558,8 +46153,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(818), 19, + ACTIONS(1203), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -46578,18 +46174,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11340] = 6, - ACTIONS(1185), 1, - anon_sym_EQ, - ACTIONS(1187), 1, + [10860] = 8, + ACTIONS(890), 1, anon_sym_EQ_GT, + ACTIONS(912), 1, + anon_sym_COMMA, + ACTIONS(923), 1, + anon_sym_RBRACK, + ACTIONS(926), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(807), 14, + ACTIONS(809), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46601,7 +46200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(833), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46617,7 +46216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 20, + ACTIONS(820), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46638,18 +46237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11406] = 6, - ACTIONS(898), 1, + [10931] = 6, + ACTIONS(1255), 1, anon_sym_EQ, - ACTIONS(1187), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(807), 14, + ACTIONS(1297), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1205), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46661,7 +46261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(833), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46677,7 +46277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 20, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46698,18 +46298,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11472] = 6, - ACTIONS(1298), 1, + [10998] = 6, + ACTIONS(1227), 1, anon_sym_EQ, - ACTIONS(1300), 1, + ACTIONS(1274), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1203), 14, + ACTIONS(1205), 15, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46721,7 +46322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1212), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46737,7 +46338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1201), 20, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46758,18 +46359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11538] = 6, - ACTIONS(1245), 1, + [11065] = 6, + ACTIONS(886), 1, anon_sym_EQ, - ACTIONS(1300), 1, + ACTIONS(917), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1203), 14, + ACTIONS(809), 15, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46781,7 +46383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1212), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46797,7 +46399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1201), 20, + ACTIONS(820), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46818,17 +46420,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11604] = 7, - ACTIONS(1245), 1, + [11132] = 7, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(1289), 1, + anon_sym_RBRACK, + ACTIONS(1292), 1, anon_sym_EQ, - ACTIONS(1277), 1, - anon_sym_in, - ACTIONS(1280), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1203), 13, + ACTIONS(1205), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -46842,7 +46444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1212), 15, + ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46858,8 +46460,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(1201), 19, + ACTIONS(1203), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -46878,13 +46481,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11671] = 5, - ACTIONS(1298), 1, + [11200] = 6, + ACTIONS(1047), 1, + anon_sym_EQ_GT, + ACTIONS(1049), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1203), 14, + ACTIONS(809), 14, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_of, @@ -46899,7 +46504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1212), 15, + ACTIONS(835), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46915,7 +46520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1201), 20, + ACTIONS(820), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46936,473 +46541,437 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11734] = 9, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1302), 12, - anon_sym_STAR, + [11266] = 8, + ACTIONS(1227), 1, + anon_sym_EQ, + ACTIONS(1274), 1, + anon_sym_EQ_GT, + ACTIONS(1284), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1304), 23, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1287), 1, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [11797] = 5, - ACTIONS(514), 1, - anon_sym_EQ, - ACTIONS(1314), 1, - sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(508), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(506), 28, + ACTIONS(1205), 13, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11852] = 10, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1316), 12, + ACTIONS(1214), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1203), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1318), 21, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [11917] = 10, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1322), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1324), 21, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [11982] = 8, - ACTIONS(1306), 1, + [11336] = 8, + ACTIONS(886), 1, + anon_sym_EQ, + ACTIONS(917), 1, + anon_sym_EQ_GT, + ACTIONS(945), 1, + anon_sym_in, + ACTIONS(1278), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(809), 13, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1308), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, anon_sym_DOT, - ACTIONS(1330), 1, sym_optional_chain, - STATE(527), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1326), 12, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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(835), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(820), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1328), 24, + anon_sym_QMARK_QMARK, + [11406] = 6, + ACTIONS(1300), 1, + anon_sym_EQ, + ACTIONS(1302), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1205), 14, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12042] = 5, - ACTIONS(1339), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1336), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1332), 12, + ACTIONS(1214), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1334), 24, + anon_sym_QMARK_QMARK, + [11472] = 6, + ACTIONS(886), 1, + anon_sym_EQ, + ACTIONS(1047), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(809), 14, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12096] = 4, - ACTIONS(1245), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1201), 12, + ACTIONS(835), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(820), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1203), 28, + anon_sym_QMARK_QMARK, + [11538] = 6, + ACTIONS(1227), 1, + anon_sym_EQ, + ACTIONS(1302), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1205), 14, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12148] = 5, - ACTIONS(514), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1341), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(510), 12, + ACTIONS(1214), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(512), 24, + anon_sym_QMARK_QMARK, + [11604] = 5, + ACTIONS(1300), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1205), 14, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12202] = 4, - ACTIONS(1344), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(632), 12, + ACTIONS(1214), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1203), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(630), 28, + anon_sym_QMARK_QMARK, + [11667] = 7, + ACTIONS(1227), 1, + anon_sym_EQ, + ACTIONS(1284), 1, + anon_sym_in, + ACTIONS(1287), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1205), 13, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12254] = 4, - ACTIONS(1314), 1, + ACTIONS(1214), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1203), 19, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11734] = 5, + ACTIONS(516), 1, + anon_sym_EQ, + ACTIONS(1304), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(508), 12, + ACTIONS(510), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47415,7 +46984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(506), 28, + ACTIONS(508), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -47444,15 +47013,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12306] = 5, - ACTIONS(1306), 1, + [11789] = 10, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, anon_sym_LPAREN, - STATE(527), 1, - sym_arguments, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1326), 12, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1306), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47465,7 +47046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1328), 27, + ACTIONS(1308), 21, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -47473,10 +47054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47490,21 +47068,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [11854] = 9, + ACTIONS(402), 1, anon_sym_BQUOTE, - [12360] = 5, - ACTIONS(1353), 1, - anon_sym_EQ, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1350), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1346), 12, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1320), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47517,15 +47098,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1348), 24, + ACTIONS(1322), 23, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47541,81 +47122,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [12414] = 26, + [11917] = 10, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1357), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [12509] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(532), 12, + ACTIONS(1324), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47628,19 +47155,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(534), 28, + ACTIONS(1326), 21, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47654,14 +47177,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [12558] = 3, + [11982] = 8, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1332), 1, + sym_optional_chain, + STATE(520), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(626), 12, + ACTIONS(1328), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47674,19 +47204,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(624), 28, - sym__automatic_semicolon, + ACTIONS(1330), 24, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47703,27 +47229,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12607] = 10, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1391), 1, - anon_sym_LPAREN, - ACTIONS(1393), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - anon_sym_DOT, - ACTIONS(1397), 1, - sym_optional_chain, + [12042] = 5, + ACTIONS(1341), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(670), 2, - sym_template_string, - sym_arguments, - ACTIONS(1316), 12, + ACTIONS(1338), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1334), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47736,13 +47253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 19, - sym__automatic_semicolon, + ACTIONS(1336), 24, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47756,24 +47275,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [12670] = 9, - ACTIONS(83), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1391), 1, - anon_sym_LPAREN, - ACTIONS(1393), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - anon_sym_DOT, - ACTIONS(1397), 1, - sym_optional_chain, + [12096] = 4, + ACTIONS(1304), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(670), 2, - sym_template_string, - sym_arguments, - ACTIONS(1302), 12, + ACTIONS(510), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47786,13 +47297,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1304), 21, - sym__automatic_semicolon, + ACTIONS(508), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47808,11 +47325,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [12731] = 3, + anon_sym_BQUOTE, + [12148] = 5, + ACTIONS(516), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(542), 12, + ACTIONS(1343), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(512), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47825,17 +47350,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(544), 28, + ACTIONS(514), 24, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -47854,11 +47375,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12780] = 3, + [12202] = 4, + ACTIONS(1227), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(552), 12, + ACTIONS(1203), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47871,7 +47394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(554), 28, + ACTIONS(1205), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -47900,11 +47423,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12829] = 3, + [12254] = 4, + ACTIONS(1346), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(562), 12, + ACTIONS(612), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47917,7 +47442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(564), 28, + ACTIONS(610), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -47946,11 +47471,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12878] = 3, + [12306] = 5, + ACTIONS(1310), 1, + anon_sym_LPAREN, + STATE(520), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(584), 12, + ACTIONS(1328), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47963,12 +47492,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(586), 28, + ACTIONS(1330), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -47992,11 +47520,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12927] = 3, + [12360] = 5, + ACTIONS(1355), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(594), 12, + ACTIONS(1352), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1348), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48009,17 +47544,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(596), 28, + ACTIONS(1350), 24, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -48038,11 +47569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12976] = 3, + [12414] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(522), 12, + ACTIONS(1357), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48055,7 +47586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(524), 28, + ACTIONS(1359), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -48084,11 +47615,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13025] = 3, + [12463] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(610), 12, + ACTIONS(1361), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48101,7 +47632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(612), 28, + ACTIONS(1363), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -48130,11 +47661,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13074] = 3, + [12512] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1201), 12, + ACTIONS(1365), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48147,7 +47678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1203), 28, + ACTIONS(1367), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -48176,17 +47707,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13123] = 6, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1330), 1, - sym_optional_chain, + [12561] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1401), 12, + ACTIONS(612), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48199,7 +47724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1403), 25, + ACTIONS(610), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -48208,7 +47733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48225,11 +47753,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13178] = 3, + [12610] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1375), 1, + anon_sym_AMP_AMP, + ACTIONS(1377), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, + anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, + anon_sym_PERCENT, + ACTIONS(1393), 1, + anon_sym_STAR_STAR, + ACTIONS(1401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1403), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1397), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1399), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1371), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [12705] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1401), 12, + ACTIONS(1405), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48242,7 +47839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1403), 28, + ACTIONS(1407), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -48271,80 +47868,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13227] = 26, + [12754] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1405), 5, + ACTIONS(1409), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [13322] = 3, + [12849] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1407), 12, + ACTIONS(1411), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48357,7 +47954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1409), 28, + ACTIONS(1413), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -48386,11 +47983,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13371] = 3, + [12898] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1411), 12, + ACTIONS(636), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48403,7 +48000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1413), 28, + ACTIONS(634), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -48432,7 +48029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13420] = 3, + [12947] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -48478,7 +48075,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13469] = 3, + [12996] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(628), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(626), 28, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13045] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -48524,7 +48167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13518] = 3, + [13094] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -48570,7 +48213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13567] = 3, + [13143] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -48616,66 +48259,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13616] = 26, + [13192] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -48685,11 +48328,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [13711] = 3, + [13287] = 4, + ACTIONS(1433), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(510), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(508), 27, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13338] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(642), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(640), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13387] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1435), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1437), 28, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13436] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1433), 12, + ACTIONS(548), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48702,7 +48484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1435), 28, + ACTIONS(550), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -48731,80 +48513,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13760] = 26, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, + [13485] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1435), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [13855] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(632), 12, + ACTIONS(1439), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48817,17 +48530,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(630), 28, - sym__automatic_semicolon, + ACTIONS(1441), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -48846,11 +48559,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13904] = 3, + [13534] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 12, + ACTIONS(558), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48863,7 +48576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1439), 28, + ACTIONS(560), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -48892,13 +48605,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13953] = 4, - ACTIONS(1441), 1, - sym__automatic_semicolon, + [13583] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(632), 12, + ACTIONS(588), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48911,16 +48622,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(630), 27, + ACTIONS(590), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -48939,13 +48651,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14004] = 4, + [13632] = 10, + ACTIONS(83), 1, + anon_sym_BQUOTE, ACTIONS(1443), 1, - sym__automatic_semicolon, + anon_sym_LPAREN, + ACTIONS(1445), 1, + anon_sym_LBRACK, + ACTIONS(1447), 1, + anon_sym_DOT, + ACTIONS(1449), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(508), 12, + ACTIONS(1451), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(719), 2, + sym_template_string, + sym_arguments, + ACTIONS(1306), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48958,18 +48684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(506), 27, + ACTIONS(1308), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, anon_sym_of, - anon_sym_while, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48983,83 +48704,57 @@ 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, - [14055] = 26, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, + [13695] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1453), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1445), 5, + ACTIONS(1455), 28, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - [14150] = 3, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13744] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1447), 12, + ACTIONS(1457), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49072,7 +48767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1449), 28, + ACTIONS(1459), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49101,11 +48796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14199] = 3, + [13793] = 4, + ACTIONS(1461), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 12, + ACTIONS(612), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49118,17 +48815,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1453), 28, + ACTIONS(610), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -49147,11 +48843,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14248] = 3, + [13844] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1455), 12, + ACTIONS(1463), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49164,7 +48860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1457), 28, + ACTIONS(1465), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49193,11 +48889,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14297] = 3, + [13893] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(622), 12, + ACTIONS(1467), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49210,7 +48906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(620), 28, + ACTIONS(1469), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49239,11 +48935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14346] = 3, + [13942] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1459), 12, + ACTIONS(1471), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49256,7 +48952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1461), 28, + ACTIONS(1473), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49285,11 +48981,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14395] = 3, + [13991] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1463), 12, + ACTIONS(1475), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49302,7 +48998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1465), 28, + ACTIONS(1477), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49331,11 +49027,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14444] = 3, + [14040] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1467), 12, + ACTIONS(1479), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49348,7 +49044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1469), 28, + ACTIONS(1481), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49377,11 +49073,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14493] = 3, + [14089] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1471), 12, + ACTIONS(612), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49394,17 +49090,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1473), 28, + ACTIONS(610), 28, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -49423,58 +49119,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14542] = 4, - ACTIONS(1479), 1, - sym_regex_flags, + [14138] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1375), 1, + anon_sym_AMP_AMP, + ACTIONS(1377), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, + anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, + anon_sym_PERCENT, + ACTIONS(1393), 1, + anon_sym_STAR_STAR, + ACTIONS(1401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1403), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1397), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1399), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1363), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [14233] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1375), 1, + anon_sym_AMP_AMP, + ACTIONS(1377), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, + anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, + anon_sym_PERCENT, + ACTIONS(1393), 1, + anon_sym_STAR_STAR, + ACTIONS(1401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1403), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1475), 13, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1399), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1477), 26, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1483), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14593] = 3, + [14328] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1481), 12, + ACTIONS(1485), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49516,80 +49303,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14642] = 26, + [14377] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1485), 5, + ACTIONS(1487), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [14737] = 3, + [14472] = 4, + ACTIONS(1493), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1487), 12, + ACTIONS(1489), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49602,14 +49391,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 28, + anon_sym_instanceof, + ACTIONS(1491), 26, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49627,143 +49416,83 @@ 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, - [14786] = 26, + [14523] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1489), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [14881] = 16, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1493), 7, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1491), 15, - sym__ternary_qmark, + ACTIONS(1495), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_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, - [14956] = 3, + [14618] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1495), 12, + ACTIONS(1497), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49776,7 +49505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1497), 28, + ACTIONS(1499), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49805,29 +49534,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15005] = 11, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, + [14667] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1493), 12, + ACTIONS(1501), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49840,164 +49551,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 18, + ACTIONS(1503), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [15070] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [14716] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1499), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [15165] = 22, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 9, - sym__ternary_qmark, + ACTIONS(1505), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [15252] = 3, + [14811] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(622), 12, + ACTIONS(1507), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50010,17 +49666,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(620), 28, - sym__automatic_semicolon, + ACTIONS(1509), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -50039,180 +49695,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15301] = 14, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, + [14860] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1511), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1493), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 17, + ACTIONS(1513), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [15372] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [14909] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1365), 1, - anon_sym_GT_GT, + ACTIONS(1375), 1, + anon_sym_AMP_AMP, ACTIONS(1377), 1, - anon_sym_PERCENT, + anon_sym_PIPE_PIPE, ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, + anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, + anon_sym_PERCENT, + ACTIONS(1393), 1, anon_sym_STAR_STAR, + ACTIONS(1401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1403), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1493), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 10, - sym__ternary_qmark, + ACTIONS(1513), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [15455] = 21, + [15004] = 16, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1493), 1, - anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1517), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1491), 10, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1515), 15, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -50222,100 +49863,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [15540] = 22, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, + anon_sym_instanceof, + [15079] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1519), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1521), 28, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1308), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1310), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1312), 1, sym_optional_chain, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1377), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, anon_sym_STAR_STAR, - ACTIONS(1493), 1, - anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [15128] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1523), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1491), 9, + ACTIONS(1409), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [15627] = 13, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1312), 1, sym_optional_chain, - ACTIONS(1377), 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(1379), 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, + [15177] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1525), 12, anon_sym_STAR, - anon_sym_SLASH, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1493), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -50324,49 +49975,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 17, + ACTIONS(1495), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [15696] = 11, - ACTIONS(402), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, + [15226] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1493), 12, + ACTIONS(1527), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50379,158 +50024,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 18, + ACTIONS(1529), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [15761] = 18, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [15275] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1365), 1, - anon_sym_GT_GT, + ACTIONS(1375), 1, + anon_sym_AMP_AMP, ACTIONS(1377), 1, - anon_sym_PERCENT, + anon_sym_PIPE_PIPE, ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, + anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, + anon_sym_PERCENT, + ACTIONS(1393), 1, anon_sym_STAR_STAR, + ACTIONS(1401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1403), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(509), 2, + ACTIONS(1397), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1399), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1493), 4, + ACTIONS(1531), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [15370] = 10, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1443), 1, + anon_sym_LPAREN, + ACTIONS(1445), 1, + anon_sym_LBRACK, + ACTIONS(1447), 1, + anon_sym_DOT, + ACTIONS(1449), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1451), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(719), 2, + sym_template_string, + sym_arguments, + ACTIONS(1324), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 12, + ACTIONS(1326), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [15840] = 24, - ACTIONS(402), 1, + anon_sym_instanceof, + [15433] = 9, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1320), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1491), 7, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1322), 21, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [15931] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [15494] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1501), 12, + ACTIONS(1533), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50543,7 +50244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1503), 28, + ACTIONS(1535), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50572,11 +50273,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15980] = 3, + [15543] = 11, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1393), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1505), 12, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1517), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50589,40 +50308,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1507), 28, + ACTIONS(1515), 18, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [16029] = 3, + [15608] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1509), 12, + ACTIONS(1537), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50635,7 +50344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1511), 28, + ACTIONS(1539), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50664,80 +50373,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16078] = 26, + [15657] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1513), 5, + ACTIONS(1541), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [15752] = 22, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, + anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, + anon_sym_PERCENT, + ACTIONS(1393), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1397), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1399), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1515), 9, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [16173] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [15839] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1515), 12, + ACTIONS(1543), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50750,7 +50524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1517), 28, + ACTIONS(1545), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50779,80 +50553,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16222] = 26, + [15888] = 23, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1517), 5, + ACTIONS(1515), 8, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [16317] = 3, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [15977] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1519), 12, + ACTIONS(1547), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50865,7 +50636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1521), 28, + ACTIONS(1531), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50894,11 +50665,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16366] = 3, + [16026] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1523), 12, + ACTIONS(628), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50911,17 +50682,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1525), 28, + ACTIONS(626), 28, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -50940,11 +50711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16415] = 3, + [16075] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1527), 12, + ACTIONS(1549), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50957,7 +50728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1529), 28, + ACTIONS(1551), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50986,103 +50757,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16464] = 3, + [16124] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1375), 1, + anon_sym_AMP_AMP, + ACTIONS(1377), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, + anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, + anon_sym_PERCENT, + ACTIONS(1393), 1, + anon_sym_STAR_STAR, + ACTIONS(1401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1403), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1397), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1399), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1553), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [16219] = 14, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1391), 1, + anon_sym_PERCENT, + ACTIONS(1393), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(640), 12, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1389), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1517), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(638), 28, - sym__automatic_semicolon, + ACTIONS(1515), 17, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + 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, + [16290] = 20, + ACTIONS(402), 1, anon_sym_BQUOTE, - [16513] = 3, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1391), 1, + anon_sym_PERCENT, + ACTIONS(1393), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1531), 12, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1397), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1399), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1517), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1515), 10, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [16373] = 21, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1379), 1, anon_sym_GT_GT, + ACTIONS(1383), 1, anon_sym_AMP, + ACTIONS(1391), 1, + anon_sym_PERCENT, + ACTIONS(1393), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1533), 28, + ACTIONS(1399), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1515), 10, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [16562] = 3, + [16458] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1535), 12, + ACTIONS(642), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51095,7 +51027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1537), 28, + ACTIONS(640), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51124,12 +51056,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16611] = 3, + [16507] = 22, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, + anon_sym_CARET, + ACTIONS(1391), 1, + anon_sym_PERCENT, + ACTIONS(1393), 1, + anon_sym_STAR_STAR, + ACTIONS(1517), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1397), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1399), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1515), 9, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [16594] = 13, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1391), 1, + anon_sym_PERCENT, + ACTIONS(1393), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1535), 12, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1517), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -51138,43 +51157,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1537), 28, + ACTIONS(1515), 17, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [16663] = 11, + ACTIONS(402), 1, anon_sym_BQUOTE, - [16660] = 3, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1393), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1535), 12, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1517), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51187,40 +51212,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1537), 28, + ACTIONS(1515), 18, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [16709] = 3, + [16728] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1535), 12, + ACTIONS(1555), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51233,7 +51248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1537), 28, + ACTIONS(1557), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51262,172 +51277,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16758] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(626), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(624), 28, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [16777] = 18, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1312), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1314), 1, anon_sym_DOT, + ACTIONS(1316), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1391), 1, anon_sym_PERCENT, + ACTIONS(1393), 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, - [16807] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1539), 12, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1517), 4, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1541), 28, + ACTIONS(1515), 12, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [16856] = 26, + [16856] = 24, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1541), 5, + ACTIONS(1515), 7, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [16951] = 3, + anon_sym_QMARK_QMARK, + [16947] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1543), 12, + ACTIONS(1559), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51440,7 +51422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1545), 28, + ACTIONS(1561), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51469,11 +51451,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17000] = 3, + [16996] = 6, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1332), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1547), 12, + ACTIONS(1559), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51486,7 +51474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1549), 28, + ACTIONS(1561), 25, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51495,10 +51483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -51515,80 +51500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17049] = 26, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, + [17051] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1549), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [17144] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1551), 12, + ACTIONS(1563), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51601,7 +51517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1553), 28, + ACTIONS(1565), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51630,80 +51546,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17193] = 26, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, + [17100] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1555), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1553), 5, + ACTIONS(1557), 28, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - [17288] = 3, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [17149] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1555), 12, + ACTIONS(1203), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51716,7 +51609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1557), 28, + ACTIONS(1205), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51745,11 +51638,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17337] = 3, + [17198] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1559), 12, + ACTIONS(1567), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51762,7 +51655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1561), 28, + ACTIONS(1569), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51791,11 +51684,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17386] = 3, + [17247] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1563), 12, + ACTIONS(1571), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51808,7 +51701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1565), 28, + ACTIONS(1573), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51837,11 +51730,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17435] = 3, + [17296] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1567), 12, + ACTIONS(1575), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51854,7 +51747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1569), 28, + ACTIONS(1577), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51883,11 +51776,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17484] = 3, + [17345] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1571), 12, + ACTIONS(1555), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51900,7 +51793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1573), 28, + ACTIONS(1557), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51929,11 +51822,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17533] = 3, + [17394] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1575), 12, + ACTIONS(1555), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51946,7 +51839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1577), 28, + ACTIONS(1557), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -51975,7 +51868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17582] = 3, + [17443] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -52021,11 +51914,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17631] = 3, + [17492] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1375), 1, + anon_sym_AMP_AMP, + ACTIONS(1377), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, + anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, + anon_sym_PERCENT, + ACTIONS(1393), 1, + anon_sym_STAR_STAR, + ACTIONS(1401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1403), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1397), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1399), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1583), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [17587] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1583), 12, + ACTIONS(1585), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52038,7 +52000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1585), 28, + ACTIONS(1587), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -52067,11 +52029,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17680] = 3, + [17636] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(632), 12, + ACTIONS(620), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52084,7 +52046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(630), 28, + ACTIONS(622), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -52113,11 +52075,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17729] = 3, + [17685] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1587), 12, + ACTIONS(1589), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52130,7 +52092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1589), 28, + ACTIONS(1591), 28, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -52159,11 +52121,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17778] = 3, + [17734] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(640), 12, + ACTIONS(636), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52176,17 +52138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(638), 28, + ACTIONS(634), 28, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -52205,27 +52167,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17827] = 10, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1391), 1, - anon_sym_LPAREN, - ACTIONS(1393), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - anon_sym_DOT, - ACTIONS(1397), 1, - sym_optional_chain, + [17783] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(670), 2, - sym_template_string, - sym_arguments, - ACTIONS(1322), 12, + ACTIONS(602), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52238,13 +52184,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1324), 19, - sym__automatic_semicolon, + ACTIONS(604), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -52258,225 +52210,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [17890] = 23, - ACTIONS(402), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, + [17832] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(568), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1491), 8, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [17979] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1391), 1, - anon_sym_LPAREN, - ACTIONS(1393), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - anon_sym_DOT, - ACTIONS(1397), 1, - sym_optional_chain, - ACTIONS(1595), 1, - anon_sym_AMP_AMP, - ACTIONS(1597), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1599), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, anon_sym_AMP, - ACTIONS(1605), 1, - anon_sym_CARET, - ACTIONS(1607), 1, anon_sym_PIPE, - ACTIONS(1611), 1, - anon_sym_PERCENT, - ACTIONS(1613), 1, - anon_sym_STAR_STAR, - ACTIONS(1621), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1623), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1399), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1591), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1609), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(670), 2, - sym_template_string, - sym_arguments, - ACTIONS(1593), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1615), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1405), 4, - sym__automatic_semicolon, + ACTIONS(570), 28, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [18073] = 28, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1395), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1397), 1, sym_optional_chain, - ACTIONS(1595), 1, anon_sym_AMP_AMP, - ACTIONS(1597), 1, anon_sym_PIPE_PIPE, - ACTIONS(1599), 1, - anon_sym_GT_GT, - ACTIONS(1603), 1, - anon_sym_AMP, - ACTIONS(1605), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1607), 1, - anon_sym_PIPE, - ACTIONS(1611), 1, anon_sym_PERCENT, - ACTIONS(1613), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1623), 1, - sym__ternary_qmark, - ACTIONS(1625), 1, - anon_sym_COMMA, - STATE(1250), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1399), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1591), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1609), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1617), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1619), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1627), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(670), 2, - sym_template_string, - sym_arguments, - ACTIONS(1593), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1615), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [18171] = 8, - ACTIONS(1391), 1, - anon_sym_LPAREN, - ACTIONS(1393), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - anon_sym_DOT, - ACTIONS(1629), 1, - sym_optional_chain, - STATE(702), 1, - sym_arguments, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [17881] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1326), 12, + ACTIONS(578), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52489,13 +52276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1328), 22, - sym__automatic_semicolon, + ACTIONS(580), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -52512,83 +52305,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18229] = 26, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1631), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [18323] = 5, - ACTIONS(1391), 1, - anon_sym_LPAREN, - STATE(702), 1, - sym_arguments, + [17930] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1326), 12, + ACTIONS(524), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52601,14 +52322,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1328), 25, - sym__automatic_semicolon, + ACTIONS(526), 28, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -52627,887 +52351,627 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18375] = 28, + [17979] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1595), 1, - anon_sym_AMP_AMP, ACTIONS(1597), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(1599), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, - anon_sym_AMP, ACTIONS(1605), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(1607), 1, + anon_sym_CARET, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1611), 1, - anon_sym_PERCENT, ACTIONS(1613), 1, + anon_sym_PERCENT, + ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 1, - anon_sym_QMARK_QMARK, ACTIONS(1623), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1625), 1, sym__ternary_qmark, - ACTIONS(1633), 1, - anon_sym_COMMA, - ACTIONS(1636), 1, - anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1485), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1591), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [18473] = 28, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1391), 1, - anon_sym_LPAREN, - ACTIONS(1393), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - anon_sym_DOT, - ACTIONS(1397), 1, - sym_optional_chain, - ACTIONS(1595), 1, - anon_sym_AMP_AMP, - ACTIONS(1597), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1599), 1, - anon_sym_GT_GT, - ACTIONS(1603), 1, - anon_sym_AMP, - ACTIONS(1605), 1, - anon_sym_CARET, - ACTIONS(1607), 1, - anon_sym_PIPE, - ACTIONS(1611), 1, - anon_sym_PERCENT, - ACTIONS(1613), 1, - anon_sym_STAR_STAR, - ACTIONS(1621), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1623), 1, - sym__ternary_qmark, - ACTIONS(1638), 1, + ACTIONS(1553), 4, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(1641), 1, anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1399), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1485), 2, - sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1591), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1609), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1617), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1619), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(670), 2, - sym_template_string, - sym_arguments, - ACTIONS(1593), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1615), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [18571] = 26, + [18073] = 28, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1595), 1, - anon_sym_AMP_AMP, ACTIONS(1597), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(1599), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, - anon_sym_AMP, ACTIONS(1605), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(1607), 1, + anon_sym_CARET, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1611), 1, - anon_sym_PERCENT, ACTIONS(1613), 1, + anon_sym_PERCENT, + ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 1, - anon_sym_QMARK_QMARK, ACTIONS(1623), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1625), 1, sym__ternary_qmark, + ACTIONS(1627), 1, + anon_sym_COMMA, + ACTIONS(1630), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1609), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1617), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1619), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(670), 2, - sym_template_string, - sym_arguments, - ACTIONS(1593), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1615), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1357), 4, + ACTIONS(1487), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - [18665] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1583), 12, + ACTIONS(1593), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1585), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18713] = 4, - ACTIONS(1247), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1201), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1203), 26, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1619), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(719), 2, + sym_template_string, + sym_arguments, + ACTIONS(1595), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1617), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18763] = 27, + [18171] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1647), 1, - anon_sym_in, - ACTIONS(1652), 1, + ACTIONS(1636), 1, anon_sym_AMP_AMP, - ACTIONS(1654), 1, + ACTIONS(1638), 1, anon_sym_PIPE_PIPE, - ACTIONS(1656), 1, + ACTIONS(1640), 1, anon_sym_GT_GT, - ACTIONS(1660), 1, + ACTIONS(1644), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1646), 1, anon_sym_CARET, - ACTIONS(1664), 1, + ACTIONS(1648), 1, anon_sym_PIPE, - ACTIONS(1668), 1, + ACTIONS(1652), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, - ACTIONS(1678), 1, + ACTIONS(1662), 1, anon_sym_QMARK_QMARK, - ACTIONS(1680), 1, + ACTIONS(1664), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1658), 2, + ACTIONS(1642), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1674), 2, + ACTIONS(1658), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 2, + ACTIONS(1660), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1672), 3, + ACTIONS(1634), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1656), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1645), 4, + ACTIONS(1553), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [18859] = 26, - ACTIONS(402), 1, + [18265] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1597), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1599), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1607), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1613), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1623), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1625), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1682), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [18953] = 6, - ACTIONS(514), 1, - anon_sym_EQ, - ACTIONS(516), 1, + ACTIONS(1483), 4, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(506), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(510), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(512), 23, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19007] = 26, + [18359] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1595), 1, + ACTIONS(1636), 1, anon_sym_AMP_AMP, - ACTIONS(1597), 1, + ACTIONS(1638), 1, anon_sym_PIPE_PIPE, - ACTIONS(1599), 1, + ACTIONS(1640), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, + ACTIONS(1644), 1, anon_sym_AMP, - ACTIONS(1605), 1, + ACTIONS(1646), 1, anon_sym_CARET, - ACTIONS(1607), 1, + ACTIONS(1648), 1, anon_sym_PIPE, - ACTIONS(1611), 1, + ACTIONS(1652), 1, anon_sym_PERCENT, - ACTIONS(1613), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 1, + ACTIONS(1662), 1, anon_sym_QMARK_QMARK, - ACTIONS(1623), 1, + ACTIONS(1664), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1642), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1658), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1660), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1634), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1656), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1431), 4, + ACTIONS(1487), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [19101] = 26, - ACTIONS(83), 1, + [18453] = 26, + ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1595), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1597), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1599), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1605), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1607), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1611), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1613), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1623), 1, + ACTIONS(1403), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1435), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [19195] = 4, - ACTIONS(1353), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1346), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1348), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1666), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19245] = 28, + anon_sym_RPAREN, + anon_sym_RBRACK, + [18547] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1595), 1, - anon_sym_AMP_AMP, ACTIONS(1597), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(1599), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, - anon_sym_AMP, ACTIONS(1605), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(1607), 1, + anon_sym_CARET, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1611), 1, - anon_sym_PERCENT, ACTIONS(1613), 1, + anon_sym_PERCENT, + ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 1, - anon_sym_QMARK_QMARK, ACTIONS(1623), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1625), 1, sym__ternary_qmark, - ACTIONS(1636), 1, - anon_sym_RBRACE, - ACTIONS(1684), 1, - anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1431), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1591), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [19343] = 26, + ACTIONS(1487), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [18641] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1595), 1, + ACTIONS(1636), 1, anon_sym_AMP_AMP, - ACTIONS(1597), 1, + ACTIONS(1638), 1, anon_sym_PIPE_PIPE, - ACTIONS(1599), 1, + ACTIONS(1640), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, + ACTIONS(1644), 1, anon_sym_AMP, - ACTIONS(1605), 1, + ACTIONS(1646), 1, anon_sym_CARET, - ACTIONS(1607), 1, + ACTIONS(1648), 1, anon_sym_PIPE, - ACTIONS(1611), 1, + ACTIONS(1652), 1, anon_sym_PERCENT, - ACTIONS(1613), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 1, + ACTIONS(1662), 1, anon_sym_QMARK_QMARK, - ACTIONS(1623), 1, + ACTIONS(1664), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1642), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1658), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1660), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1634), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1656), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1541), 4, + ACTIONS(1409), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [19437] = 26, + [18735] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1595), 1, + ACTIONS(1636), 1, anon_sym_AMP_AMP, - ACTIONS(1597), 1, + ACTIONS(1638), 1, anon_sym_PIPE_PIPE, - ACTIONS(1599), 1, + ACTIONS(1640), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, + ACTIONS(1644), 1, anon_sym_AMP, - ACTIONS(1605), 1, + ACTIONS(1646), 1, anon_sym_CARET, - ACTIONS(1607), 1, + ACTIONS(1648), 1, anon_sym_PIPE, - ACTIONS(1611), 1, + ACTIONS(1652), 1, anon_sym_PERCENT, - ACTIONS(1613), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 1, + ACTIONS(1662), 1, anon_sym_QMARK_QMARK, - ACTIONS(1623), 1, + ACTIONS(1664), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1642), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1658), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1660), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1634), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1656), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1549), 4, + ACTIONS(1371), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [19531] = 5, - ACTIONS(514), 1, + [18829] = 4, + ACTIONS(1255), 1, anon_sym_EQ, - ACTIONS(1443), 1, - sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(508), 12, + ACTIONS(1203), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53520,14 +52984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(506), 25, + ACTIONS(1205), 26, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -53546,13 +53011,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19583] = 4, - ACTIONS(1339), 1, + [18879] = 6, + ACTIONS(516), 1, anon_sym_EQ, + ACTIONS(518), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1332), 12, + ACTIONS(508), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(512), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53565,15 +53035,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1334), 26, + ACTIONS(514), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -53592,59 +53059,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19633] = 4, - ACTIONS(1353), 1, - anon_sym_EQ, + [18933] = 26, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1443), 1, + anon_sym_LPAREN, + ACTIONS(1445), 1, + anon_sym_LBRACK, + ACTIONS(1447), 1, + anon_sym_DOT, + ACTIONS(1449), 1, + sym_optional_chain, + ACTIONS(1597), 1, + anon_sym_AMP_AMP, + ACTIONS(1599), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1601), 1, + anon_sym_GT_GT, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1607), 1, + anon_sym_CARET, + ACTIONS(1609), 1, + anon_sym_PIPE, + ACTIONS(1613), 1, + anon_sym_PERCENT, + ACTIONS(1615), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1625), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1346), 12, + ACTIONS(1451), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1593), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1603), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1611), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1619), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1621), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(719), 2, + sym_template_string, + sym_arguments, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1617), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1505), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [19027] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1375), 1, + anon_sym_AMP_AMP, + ACTIONS(1377), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1379), 1, anon_sym_GT_GT, + ACTIONS(1383), 1, anon_sym_AMP, + ACTIONS(1385), 1, + anon_sym_CARET, + ACTIONS(1387), 1, anon_sym_PIPE, + ACTIONS(1391), 1, + anon_sym_PERCENT, + ACTIONS(1393), 1, + anon_sym_STAR_STAR, + ACTIONS(1401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1403), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1348), 26, - sym__ternary_qmark, + ACTIONS(1399), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1668), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [19121] = 11, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1443), 1, + anon_sym_LPAREN, + ACTIONS(1445), 1, + anon_sym_LBRACK, + ACTIONS(1447), 1, anon_sym_DOT, + ACTIONS(1449), 1, sym_optional_chain, + ACTIONS(1615), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1451), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(719), 2, + sym_template_string, + sym_arguments, + ACTIONS(1517), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1515), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [19185] = 26, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1443), 1, + anon_sym_LPAREN, + ACTIONS(1445), 1, + anon_sym_LBRACK, + ACTIONS(1447), 1, + anon_sym_DOT, + ACTIONS(1449), 1, + sym_optional_chain, + ACTIONS(1636), 1, + anon_sym_AMP_AMP, + ACTIONS(1638), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1640), 1, + anon_sym_GT_GT, + ACTIONS(1644), 1, + anon_sym_AMP, + ACTIONS(1646), 1, + anon_sym_CARET, + ACTIONS(1648), 1, + anon_sym_PIPE, + ACTIONS(1652), 1, + anon_sym_PERCENT, + ACTIONS(1654), 1, + anon_sym_STAR_STAR, + ACTIONS(1662), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1664), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19683] = 4, - ACTIONS(514), 1, + ACTIONS(1632), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1642), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1650), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1658), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1660), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(719), 2, + sym_template_string, + sym_arguments, + ACTIONS(1634), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1656), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1431), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [19279] = 4, + ACTIONS(1227), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(510), 12, + ACTIONS(1203), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53657,15 +53335,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(512), 26, + ACTIONS(1205), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -53684,81 +53362,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19733] = 26, + [19329] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1595), 1, + ACTIONS(1636), 1, anon_sym_AMP_AMP, - ACTIONS(1597), 1, + ACTIONS(1638), 1, anon_sym_PIPE_PIPE, - ACTIONS(1599), 1, + ACTIONS(1640), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, + ACTIONS(1644), 1, anon_sym_AMP, - ACTIONS(1605), 1, + ACTIONS(1646), 1, anon_sym_CARET, - ACTIONS(1607), 1, + ACTIONS(1648), 1, anon_sym_PIPE, - ACTIONS(1611), 1, + ACTIONS(1652), 1, anon_sym_PERCENT, - ACTIONS(1613), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 1, + ACTIONS(1662), 1, anon_sym_QMARK_QMARK, - ACTIONS(1623), 1, + ACTIONS(1664), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1642), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1658), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1660), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1634), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1656), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1553), 4, + ACTIONS(1483), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [19827] = 4, - ACTIONS(514), 1, - anon_sym_EQ, + [19423] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(510), 12, + ACTIONS(1405), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53771,7 +53447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(512), 26, + ACTIONS(1407), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -53779,6 +53455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -53798,13 +53475,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19877] = 4, - ACTIONS(1245), 1, - anon_sym_EQ, + [19471] = 5, + ACTIONS(1443), 1, + anon_sym_LPAREN, + STATE(737), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1201), 12, + ACTIONS(1328), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53817,12 +53496,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1203), 26, + ACTIONS(1330), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, @@ -53844,149 +53522,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19927] = 28, + [19523] = 16, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1595), 1, + ACTIONS(1601), 1, + anon_sym_GT_GT, + ACTIONS(1613), 1, + anon_sym_PERCENT, + ACTIONS(1615), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1451), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1593), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1603), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1611), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(719), 2, + sym_template_string, + sym_arguments, + ACTIONS(1517), 7, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1515), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(1597), 1, anon_sym_PIPE_PIPE, - ACTIONS(1599), 1, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [19597] = 22, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1443), 1, + anon_sym_LPAREN, + ACTIONS(1445), 1, + anon_sym_LBRACK, + ACTIONS(1447), 1, + anon_sym_DOT, + ACTIONS(1449), 1, + sym_optional_chain, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, - anon_sym_AMP, ACTIONS(1605), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(1607), 1, + anon_sym_CARET, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1611), 1, - anon_sym_PERCENT, ACTIONS(1613), 1, + anon_sym_PERCENT, + ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1623), 1, - sym__ternary_qmark, - ACTIONS(1625), 1, - anon_sym_COMMA, - STATE(1250), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1687), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [20025] = 26, + ACTIONS(1515), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [19683] = 28, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1595), 1, - anon_sym_AMP_AMP, ACTIONS(1597), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(1599), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, - anon_sym_AMP, ACTIONS(1605), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(1607), 1, + anon_sym_CARET, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1611), 1, - anon_sym_PERCENT, ACTIONS(1613), 1, + anon_sym_PERCENT, + ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 1, - anon_sym_QMARK_QMARK, ACTIONS(1623), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1625), 1, sym__ternary_qmark, + ACTIONS(1670), 1, + anon_sym_COMMA, + STATE(1188), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + ACTIONS(1672), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1445), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [20119] = 3, + [19781] = 8, + ACTIONS(1443), 1, + anon_sym_LPAREN, + ACTIONS(1445), 1, + anon_sym_LBRACK, + ACTIONS(1447), 1, + anon_sym_DOT, + ACTIONS(1674), 1, + sym_optional_chain, + STATE(737), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1587), 12, + ACTIONS(1328), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53999,18 +53741,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1589), 27, + ACTIONS(1330), 22, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -54027,870 +53764,901 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20167] = 26, + [19839] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1652), 1, + ACTIONS(1636), 1, anon_sym_AMP_AMP, - ACTIONS(1654), 1, + ACTIONS(1638), 1, anon_sym_PIPE_PIPE, - ACTIONS(1656), 1, + ACTIONS(1640), 1, anon_sym_GT_GT, - ACTIONS(1660), 1, + ACTIONS(1644), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1646), 1, anon_sym_CARET, - ACTIONS(1664), 1, + ACTIONS(1648), 1, anon_sym_PIPE, - ACTIONS(1668), 1, + ACTIONS(1652), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, - ACTIONS(1678), 1, + ACTIONS(1662), 1, anon_sym_QMARK_QMARK, - ACTIONS(1680), 1, + ACTIONS(1664), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1642), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1674), 2, + ACTIONS(1658), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 2, + ACTIONS(1660), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, + ACTIONS(1634), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1672), 3, + ACTIONS(1656), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1431), 4, + ACTIONS(1363), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [20261] = 26, + [19933] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1652), 1, + ACTIONS(1636), 1, anon_sym_AMP_AMP, - ACTIONS(1654), 1, + ACTIONS(1638), 1, anon_sym_PIPE_PIPE, - ACTIONS(1656), 1, + ACTIONS(1640), 1, anon_sym_GT_GT, - ACTIONS(1660), 1, + ACTIONS(1644), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1646), 1, anon_sym_CARET, - ACTIONS(1664), 1, + ACTIONS(1648), 1, anon_sym_PIPE, - ACTIONS(1668), 1, + ACTIONS(1652), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, - ACTIONS(1678), 1, + ACTIONS(1662), 1, anon_sym_QMARK_QMARK, - ACTIONS(1680), 1, + ACTIONS(1664), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1642), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1674), 2, + ACTIONS(1658), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 2, + ACTIONS(1660), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, + ACTIONS(1634), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1672), 3, + ACTIONS(1656), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1435), 4, + ACTIONS(1583), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [20355] = 26, + [20027] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1652), 1, + ACTIONS(1597), 1, anon_sym_AMP_AMP, - ACTIONS(1654), 1, + ACTIONS(1599), 1, anon_sym_PIPE_PIPE, - ACTIONS(1656), 1, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1660), 1, + ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1607), 1, anon_sym_CARET, - ACTIONS(1664), 1, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1668), 1, + ACTIONS(1613), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1678), 1, + ACTIONS(1623), 1, anon_sym_QMARK_QMARK, - ACTIONS(1680), 1, + ACTIONS(1625), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1674), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1672), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1445), 4, + ACTIONS(1371), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [20449] = 26, + [20121] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1652), 1, + ACTIONS(1636), 1, anon_sym_AMP_AMP, - ACTIONS(1654), 1, + ACTIONS(1638), 1, anon_sym_PIPE_PIPE, - ACTIONS(1656), 1, + ACTIONS(1640), 1, anon_sym_GT_GT, - ACTIONS(1660), 1, + ACTIONS(1644), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1646), 1, anon_sym_CARET, - ACTIONS(1664), 1, + ACTIONS(1648), 1, anon_sym_PIPE, - ACTIONS(1668), 1, + ACTIONS(1652), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, - ACTIONS(1678), 1, + ACTIONS(1662), 1, anon_sym_QMARK_QMARK, - ACTIONS(1680), 1, + ACTIONS(1664), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1642), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1674), 2, + ACTIONS(1658), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 2, + ACTIONS(1660), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, + ACTIONS(1634), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1672), 3, + ACTIONS(1656), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1485), 4, + ACTIONS(1531), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [20543] = 26, + [20215] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1652), 1, + ACTIONS(1597), 1, anon_sym_AMP_AMP, - ACTIONS(1654), 1, + ACTIONS(1599), 1, anon_sym_PIPE_PIPE, - ACTIONS(1656), 1, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1660), 1, + ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1607), 1, anon_sym_CARET, - ACTIONS(1664), 1, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1668), 1, + ACTIONS(1613), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1678), 1, + ACTIONS(1623), 1, anon_sym_QMARK_QMARK, - ACTIONS(1680), 1, + ACTIONS(1625), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1674), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1672), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1489), 4, + ACTIONS(1513), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [20637] = 16, + [20309] = 23, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1656), 1, + ACTIONS(1597), 1, + anon_sym_AMP_AMP, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1607), 1, + anon_sym_CARET, + ACTIONS(1609), 1, + anon_sym_PIPE, + ACTIONS(1613), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1615), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(670), 2, - sym_template_string, - sym_arguments, - ACTIONS(1493), 7, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [20711] = 11, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1391), 1, - anon_sym_LPAREN, - ACTIONS(1393), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - anon_sym_DOT, - ACTIONS(1397), 1, - sym_optional_chain, - ACTIONS(1670), 1, - anon_sym_STAR_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1399), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1493), 12, - anon_sym_STAR, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1491), 17, + ACTIONS(1617), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1515), 7, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [20775] = 22, + [20397] = 28, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1656), 1, + ACTIONS(1597), 1, + anon_sym_AMP_AMP, + ACTIONS(1599), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1660), 1, + ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1607), 1, anon_sym_CARET, - ACTIONS(1664), 1, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1668), 1, + ACTIONS(1613), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1615), 1, anon_sym_STAR_STAR, + ACTIONS(1623), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1625), 1, + sym__ternary_qmark, + ACTIONS(1676), 1, + anon_sym_COMMA, + ACTIONS(1679), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1505), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1674), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1672), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 8, + [20495] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1365), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1367), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [20861] = 23, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [20543] = 28, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1652), 1, + ACTIONS(1597), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1599), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1660), 1, + ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1607), 1, anon_sym_CARET, - ACTIONS(1664), 1, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1668), 1, + ACTIONS(1613), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1615), 1, anon_sym_STAR_STAR, + ACTIONS(1623), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1625), 1, + sym__ternary_qmark, + ACTIONS(1630), 1, + anon_sym_RBRACE, + ACTIONS(1681), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1505), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1674), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1672), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 7, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [20949] = 14, + [20641] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1668), 1, - anon_sym_PERCENT, - ACTIONS(1670), 1, - anon_sym_STAR_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1399), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1643), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1666), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(670), 2, - sym_template_string, - sym_arguments, - ACTIONS(1493), 8, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1491), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1636), 1, anon_sym_AMP_AMP, + ACTIONS(1638), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [21019] = 20, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1391), 1, - anon_sym_LPAREN, - ACTIONS(1393), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - anon_sym_DOT, - ACTIONS(1397), 1, - sym_optional_chain, - ACTIONS(1656), 1, + ACTIONS(1640), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1644), 1, + anon_sym_AMP, + ACTIONS(1646), 1, + anon_sym_CARET, + ACTIONS(1648), 1, + anon_sym_PIPE, + ACTIONS(1652), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, + ACTIONS(1662), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1664), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1493), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1643), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1642), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1674), 2, + ACTIONS(1658), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 2, + ACTIONS(1660), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, + ACTIONS(1634), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1672), 3, + ACTIONS(1656), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 9, + ACTIONS(1495), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [21101] = 21, + [20735] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1493), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, + ACTIONS(1597), 1, + anon_sym_AMP_AMP, + ACTIONS(1599), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1660), 1, + ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(1668), 1, + ACTIONS(1607), 1, + anon_sym_CARET, + ACTIONS(1609), 1, + anon_sym_PIPE, + ACTIONS(1613), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1615), 1, anon_sym_STAR_STAR, + ACTIONS(1623), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1625), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1674), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1672), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 9, + ACTIONS(1363), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [20829] = 4, + ACTIONS(1355), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1348), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1350), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [21185] = 22, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [20879] = 27, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1493), 1, - anon_sym_PIPE, - ACTIONS(1656), 1, + ACTIONS(1636), 1, + anon_sym_AMP_AMP, + ACTIONS(1638), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1640), 1, anon_sym_GT_GT, - ACTIONS(1660), 1, + ACTIONS(1644), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1646), 1, anon_sym_CARET, - ACTIONS(1668), 1, + ACTIONS(1648), 1, + anon_sym_PIPE, + ACTIONS(1652), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, + ACTIONS(1662), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1664), 1, + sym__ternary_qmark, + ACTIONS(1686), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1634), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1642), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1674), 2, + ACTIONS(1658), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 2, + ACTIONS(1660), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1672), 3, + ACTIONS(1656), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 8, + ACTIONS(1684), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [21271] = 13, + [20975] = 21, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1668), 1, + ACTIONS(1517), 1, + anon_sym_PIPE, + ACTIONS(1640), 1, + anon_sym_GT_GT, + ACTIONS(1644), 1, + anon_sym_AMP, + ACTIONS(1652), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(670), 2, + ACTIONS(1642), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1650), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1658), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1660), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1493), 10, + ACTIONS(1634), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1491), 16, + ACTIONS(1656), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1515), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -54898,38 +54666,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [21339] = 11, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1391), 1, - anon_sym_LPAREN, - ACTIONS(1393), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - anon_sym_DOT, - ACTIONS(1397), 1, - sym_optional_chain, - ACTIONS(1670), 1, - anon_sym_STAR_STAR, + [21059] = 4, + ACTIONS(516), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(670), 2, - sym_template_string, - sym_arguments, - ACTIONS(1493), 12, + ACTIONS(512), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54942,775 +54687,738 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 17, + ACTIONS(514), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [21403] = 18, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21109] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1656), 1, + ACTIONS(1597), 1, + anon_sym_AMP_AMP, + ACTIONS(1599), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1607), 1, + anon_sym_CARET, + ACTIONS(1609), 1, + anon_sym_PIPE, + ACTIONS(1613), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1615), 1, anon_sym_STAR_STAR, + ACTIONS(1623), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1625), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(670), 2, + ACTIONS(1619), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1621), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1672), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1493), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1491), 11, + ACTIONS(1409), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [21481] = 24, + [21203] = 24, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1652), 1, + ACTIONS(1636), 1, anon_sym_AMP_AMP, - ACTIONS(1654), 1, + ACTIONS(1638), 1, anon_sym_PIPE_PIPE, - ACTIONS(1656), 1, + ACTIONS(1640), 1, anon_sym_GT_GT, - ACTIONS(1660), 1, + ACTIONS(1644), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1646), 1, anon_sym_CARET, - ACTIONS(1664), 1, + ACTIONS(1648), 1, anon_sym_PIPE, - ACTIONS(1668), 1, + ACTIONS(1652), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1642), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1674), 2, + ACTIONS(1658), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 2, + ACTIONS(1660), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, + ACTIONS(1634), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1672), 3, + ACTIONS(1656), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 6, + ACTIONS(1515), 6, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, anon_sym_QMARK_QMARK, - [21571] = 26, + [21293] = 28, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1652), 1, + ACTIONS(1597), 1, anon_sym_AMP_AMP, - ACTIONS(1654), 1, + ACTIONS(1599), 1, anon_sym_PIPE_PIPE, - ACTIONS(1656), 1, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1660), 1, + ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1607), 1, anon_sym_CARET, - ACTIONS(1664), 1, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1668), 1, + ACTIONS(1613), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1678), 1, + ACTIONS(1623), 1, anon_sym_QMARK_QMARK, - ACTIONS(1680), 1, + ACTIONS(1625), 1, sym__ternary_qmark, + ACTIONS(1670), 1, + anon_sym_COMMA, + STATE(1188), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1674), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + ACTIONS(1689), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1672), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1513), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [21665] = 26, + [21391] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1652), 1, + ACTIONS(1597), 1, anon_sym_AMP_AMP, - ACTIONS(1654), 1, + ACTIONS(1599), 1, anon_sym_PIPE_PIPE, - ACTIONS(1656), 1, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1660), 1, + ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1607), 1, anon_sym_CARET, - ACTIONS(1664), 1, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1668), 1, + ACTIONS(1613), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1678), 1, + ACTIONS(1623), 1, anon_sym_QMARK_QMARK, - ACTIONS(1680), 1, + ACTIONS(1625), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1674), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1672), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1517), 4, + ACTIONS(1583), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [21759] = 26, + [21485] = 24, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1595), 1, - anon_sym_AMP_AMP, ACTIONS(1597), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(1599), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, - anon_sym_AMP, ACTIONS(1605), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(1607), 1, + anon_sym_CARET, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1611), 1, - anon_sym_PERCENT, ACTIONS(1613), 1, + anon_sym_PERCENT, + ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1623), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1485), 4, + ACTIONS(1515), 6, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [21853] = 26, + anon_sym_QMARK_QMARK, + [21575] = 18, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1652), 1, - anon_sym_AMP_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1656), 1, + ACTIONS(1640), 1, anon_sym_GT_GT, - ACTIONS(1660), 1, - anon_sym_AMP, - ACTIONS(1662), 1, - anon_sym_CARET, - ACTIONS(1664), 1, - anon_sym_PIPE, - ACTIONS(1668), 1, + ACTIONS(1652), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, - ACTIONS(1678), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1680), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1642), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1676), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, + ACTIONS(1634), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1672), 3, + ACTIONS(1656), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1541), 4, + ACTIONS(1517), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1515), 11, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [21947] = 26, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + [21653] = 18, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1652), 1, - anon_sym_AMP_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1656), 1, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1660), 1, - anon_sym_AMP, - ACTIONS(1662), 1, - anon_sym_CARET, - ACTIONS(1664), 1, - anon_sym_PIPE, - ACTIONS(1668), 1, + ACTIONS(1613), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1678), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1680), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1676), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1672), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1549), 4, + ACTIONS(1517), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1515), 11, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [22041] = 26, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + [21731] = 11, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1652), 1, - anon_sym_AMP_AMP, ACTIONS(1654), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1656), 1, - anon_sym_GT_GT, - ACTIONS(1660), 1, - anon_sym_AMP, - ACTIONS(1662), 1, - anon_sym_CARET, - ACTIONS(1664), 1, - anon_sym_PIPE, - ACTIONS(1668), 1, - anon_sym_PERCENT, - ACTIONS(1670), 1, anon_sym_STAR_STAR, - ACTIONS(1678), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1680), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1658), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1666), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1676), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, + ACTIONS(1517), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1672), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1553), 4, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1515), 17, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [22135] = 26, + anon_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, + [21795] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1595), 1, - anon_sym_AMP_AMP, ACTIONS(1597), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(1599), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, - anon_sym_AMP, ACTIONS(1605), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(1607), 1, + anon_sym_CARET, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1611), 1, - anon_sym_PERCENT, ACTIONS(1613), 1, + anon_sym_PERCENT, + ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 1, - anon_sym_QMARK_QMARK, ACTIONS(1623), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1625), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1489), 4, + ACTIONS(1531), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [22229] = 26, + [21889] = 13, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, ACTIONS(1652), 1, - anon_sym_AMP_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1656), 1, - anon_sym_GT_GT, - ACTIONS(1660), 1, - anon_sym_AMP, - ACTIONS(1662), 1, - anon_sym_CARET, - ACTIONS(1664), 1, - anon_sym_PIPE, - ACTIONS(1668), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, - ACTIONS(1678), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1680), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1666), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1676), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, + ACTIONS(1517), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1672), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1357), 4, + 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(1515), 16, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [22323] = 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [21957] = 22, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1599), 1, + ACTIONS(1517), 1, + anon_sym_PIPE, + ACTIONS(1640), 1, anon_sym_GT_GT, - ACTIONS(1611), 1, + ACTIONS(1644), 1, + anon_sym_AMP, + ACTIONS(1646), 1, + anon_sym_CARET, + ACTIONS(1652), 1, anon_sym_PERCENT, - ACTIONS(1613), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1642), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1650), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(670), 2, + ACTIONS(1658), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1660), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1493), 7, + ACTIONS(1634), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1491), 14, + ACTIONS(1656), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1515), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [22397] = 11, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1391), 1, - anon_sym_LPAREN, - ACTIONS(1393), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - anon_sym_DOT, - ACTIONS(1397), 1, - sym_optional_chain, - ACTIONS(1613), 1, - anon_sym_STAR_STAR, + [22043] = 4, + ACTIONS(1341), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(670), 2, - sym_template_string, - sym_arguments, - ACTIONS(1493), 12, + ACTIONS(1334), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55723,148 +55431,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 17, + ACTIONS(1336), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [22461] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [22093] = 20, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1652), 1, - anon_sym_AMP_AMP, - ACTIONS(1654), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1656), 1, + ACTIONS(1640), 1, anon_sym_GT_GT, - ACTIONS(1660), 1, - anon_sym_AMP, - ACTIONS(1662), 1, - anon_sym_CARET, - ACTIONS(1664), 1, - anon_sym_PIPE, - ACTIONS(1668), 1, + ACTIONS(1652), 1, anon_sym_PERCENT, - ACTIONS(1670), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, - ACTIONS(1678), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1680), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1643), 2, + ACTIONS(1517), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1658), 2, + ACTIONS(1642), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1666), 2, + ACTIONS(1650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1674), 2, + ACTIONS(1658), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 2, + ACTIONS(1660), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1650), 3, + ACTIONS(1634), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1672), 3, + ACTIONS(1656), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1405), 4, + ACTIONS(1515), 9, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [22555] = 22, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [22175] = 11, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1599), 1, - anon_sym_GT_GT, - ACTIONS(1603), 1, - anon_sym_AMP, - ACTIONS(1605), 1, - anon_sym_CARET, - ACTIONS(1607), 1, - anon_sym_PIPE, - ACTIONS(1611), 1, - anon_sym_PERCENT, - ACTIONS(1613), 1, + ACTIONS(1615), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1609), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1617), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1619), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1517), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1491), 8, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1515), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -55872,103 +55563,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [22641] = 23, + anon_sym_instanceof, + [22239] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1595), 1, + ACTIONS(1597), 1, anon_sym_AMP_AMP, ACTIONS(1599), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, - anon_sym_AMP, ACTIONS(1605), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(1607), 1, + anon_sym_CARET, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1611), 1, - anon_sym_PERCENT, ACTIONS(1613), 1, + anon_sym_PERCENT, + ACTIONS(1615), 1, anon_sym_STAR_STAR, + ACTIONS(1623), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1625), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 7, + ACTIONS(1495), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [22729] = 14, + [22333] = 14, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1611), 1, + ACTIONS(1652), 1, anon_sym_PERCENT, - ACTIONS(1613), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1609), 2, + ACTIONS(1650), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1493), 8, + ACTIONS(1517), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -55977,11 +55680,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 16, + ACTIONS(1515), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55994,59 +55697,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [22799] = 20, + [22403] = 13, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1599), 1, - anon_sym_GT_GT, - ACTIONS(1611), 1, - anon_sym_PERCENT, ACTIONS(1613), 1, + anon_sym_PERCENT, + ACTIONS(1615), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1493), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1591), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1609), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1617), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1619), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1517), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1491), 9, + 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(1515), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -56054,213 +55743,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [22881] = 21, + anon_sym_instanceof, + [22471] = 23, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1493), 1, - anon_sym_PIPE, - ACTIONS(1599), 1, + ACTIONS(1636), 1, + anon_sym_AMP_AMP, + ACTIONS(1640), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, + ACTIONS(1644), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1646), 1, + anon_sym_CARET, + ACTIONS(1648), 1, + anon_sym_PIPE, + ACTIONS(1652), 1, anon_sym_PERCENT, - ACTIONS(1613), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1642), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1658), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1660), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1634), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1656), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 9, + ACTIONS(1515), 7, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [22965] = 22, + [22559] = 22, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1493), 1, - anon_sym_PIPE, - ACTIONS(1599), 1, + ACTIONS(1640), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, + ACTIONS(1644), 1, anon_sym_AMP, - ACTIONS(1605), 1, + ACTIONS(1646), 1, anon_sym_CARET, - ACTIONS(1611), 1, + ACTIONS(1648), 1, + anon_sym_PIPE, + ACTIONS(1652), 1, anon_sym_PERCENT, - ACTIONS(1613), 1, + ACTIONS(1654), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1632), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1642), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1650), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1658), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1660), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1634), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1656), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 8, + ACTIONS(1515), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [23051] = 13, + [22645] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1611), 1, - anon_sym_PERCENT, + ACTIONS(1597), 1, + anon_sym_AMP_AMP, + ACTIONS(1599), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1601), 1, + anon_sym_GT_GT, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1607), 1, + anon_sym_CARET, + ACTIONS(1609), 1, + anon_sym_PIPE, ACTIONS(1613), 1, + anon_sym_PERCENT, + ACTIONS(1615), 1, anon_sym_STAR_STAR, + ACTIONS(1623), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1625), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(670), 2, + ACTIONS(1603), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1611), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1619), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1621), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1493), 10, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1491), 16, + ACTIONS(1617), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1431), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [23119] = 11, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1391), 1, - anon_sym_LPAREN, - ACTIONS(1393), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - anon_sym_DOT, - ACTIONS(1397), 1, - sym_optional_chain, - ACTIONS(1613), 1, - anon_sym_STAR_STAR, + [22739] = 5, + ACTIONS(516), 1, + anon_sym_EQ, + ACTIONS(1433), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(670), 2, - sym_template_string, - sym_arguments, - ACTIONS(1493), 12, + ACTIONS(510), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56273,73 +55970,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 17, - sym__automatic_semicolon, + ACTIONS(508), 25, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [23183] = 18, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [22791] = 22, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1599), 1, + ACTIONS(1517), 1, + anon_sym_PIPE, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1611), 1, - anon_sym_PERCENT, + ACTIONS(1605), 1, + anon_sym_AMP, + ACTIONS(1607), 1, + anon_sym_CARET, ACTIONS(1613), 1, + anon_sym_PERCENT, + ACTIONS(1615), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(670), 2, + ACTIONS(1619), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1621), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1493), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1491), 11, + ACTIONS(1515), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -56347,333 +56059,327 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, - [23261] = 24, + [22877] = 21, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1595), 1, - anon_sym_AMP_AMP, - ACTIONS(1597), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1599), 1, + ACTIONS(1517), 1, + anon_sym_PIPE, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, - anon_sym_AMP, ACTIONS(1605), 1, - anon_sym_CARET, - ACTIONS(1607), 1, - anon_sym_PIPE, - ACTIONS(1611), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(1613), 1, + anon_sym_PERCENT, + ACTIONS(1615), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 6, + ACTIONS(1515), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, - [23351] = 26, + [22961] = 20, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1595), 1, - anon_sym_AMP_AMP, - ACTIONS(1597), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1599), 1, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, - anon_sym_AMP, - ACTIONS(1605), 1, - anon_sym_CARET, - ACTIONS(1607), 1, - anon_sym_PIPE, - ACTIONS(1611), 1, - anon_sym_PERCENT, ACTIONS(1613), 1, + anon_sym_PERCENT, + ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1623), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1517), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1513), 4, + ACTIONS(1515), 9, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [23445] = 28, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1391), 1, - anon_sym_LPAREN, - ACTIONS(1393), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - anon_sym_DOT, - ACTIONS(1397), 1, - sym_optional_chain, - ACTIONS(1595), 1, anon_sym_AMP_AMP, - ACTIONS(1597), 1, anon_sym_PIPE_PIPE, - ACTIONS(1599), 1, - anon_sym_GT_GT, - ACTIONS(1603), 1, - anon_sym_AMP, - ACTIONS(1605), 1, anon_sym_CARET, - ACTIONS(1607), 1, - anon_sym_PIPE, - ACTIONS(1611), 1, - anon_sym_PERCENT, - ACTIONS(1613), 1, - anon_sym_STAR_STAR, - ACTIONS(1621), 1, anon_sym_QMARK_QMARK, - ACTIONS(1623), 1, - sym__ternary_qmark, - ACTIONS(1625), 1, - anon_sym_COMMA, - STATE(1250), 1, - aux_sym_sequence_expression_repeat1, + [23043] = 4, + ACTIONS(1355), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1348), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1609), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1350), 26, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1689), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(670), 2, - sym_template_string, - sym_arguments, - ACTIONS(1593), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1615), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [23543] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [23093] = 28, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1595), 1, - anon_sym_AMP_AMP, ACTIONS(1597), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(1599), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, - anon_sym_AMP, ACTIONS(1605), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(1607), 1, + anon_sym_CARET, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1611), 1, - anon_sym_PERCENT, ACTIONS(1613), 1, + anon_sym_PERCENT, + ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 1, - anon_sym_QMARK_QMARK, ACTIONS(1623), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1625), 1, sym__ternary_qmark, + ACTIONS(1670), 1, + anon_sym_COMMA, + STATE(1188), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + ACTIONS(1691), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1517), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [23637] = 4, - ACTIONS(1339), 1, - anon_sym_EQ, + [23191] = 14, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1443), 1, + anon_sym_LPAREN, + ACTIONS(1445), 1, + anon_sym_LBRACK, + ACTIONS(1447), 1, + anon_sym_DOT, + ACTIONS(1449), 1, + sym_optional_chain, + ACTIONS(1613), 1, + anon_sym_PERCENT, + ACTIONS(1615), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1332), 12, + ACTIONS(1451), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1593), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(719), 2, + sym_template_string, + sym_arguments, + ACTIONS(1517), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1334), 26, + ACTIONS(1515), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [23261] = 11, + ACTIONS(83), 1, anon_sym_BQUOTE, - [23687] = 3, + ACTIONS(1443), 1, + anon_sym_LPAREN, + ACTIONS(1445), 1, + anon_sym_LBRACK, + ACTIONS(1447), 1, + anon_sym_DOT, + ACTIONS(1449), 1, + sym_optional_chain, + ACTIONS(1654), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1463), 12, + ACTIONS(1451), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(719), 2, + sym_template_string, + sym_arguments, + ACTIONS(1517), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56686,84 +56392,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1465), 26, + ACTIONS(1515), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [23325] = 16, + ACTIONS(83), 1, anon_sym_BQUOTE, - [23734] = 5, - ACTIONS(526), 1, - sym__automatic_semicolon, + ACTIONS(1443), 1, + anon_sym_LPAREN, + ACTIONS(1445), 1, + anon_sym_LBRACK, + ACTIONS(1447), 1, + anon_sym_DOT, + ACTIONS(1449), 1, + sym_optional_chain, + ACTIONS(1640), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_PERCENT, + ACTIONS(1654), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(518), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(522), 12, + ACTIONS(1451), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1632), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1642), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1650), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(719), 2, + sym_template_string, + sym_arguments, + ACTIONS(1517), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(524), 23, + ACTIONS(1515), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23785] = 3, + [23399] = 4, + ACTIONS(516), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(584), 12, + ACTIONS(512), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56776,15 +56487,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(586), 26, - sym__automatic_semicolon, + ACTIONS(514), 26, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -56803,55 +56514,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23832] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(594), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(596), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [23449] = 26, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1443), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1445), 1, anon_sym_LBRACK, + ACTIONS(1447), 1, anon_sym_DOT, + ACTIONS(1449), 1, sym_optional_chain, + ACTIONS(1636), 1, anon_sym_AMP_AMP, + ACTIONS(1638), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1640), 1, + anon_sym_GT_GT, + ACTIONS(1644), 1, + anon_sym_AMP, + ACTIONS(1646), 1, anon_sym_CARET, + ACTIONS(1648), 1, + anon_sym_PIPE, + ACTIONS(1652), 1, anon_sym_PERCENT, + ACTIONS(1654), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1662), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1664), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1451), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1632), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1642), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1650), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1658), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1660), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(719), 2, + sym_template_string, + sym_arguments, + ACTIONS(1634), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1656), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23879] = 3, + ACTIONS(1505), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [23543] = 4, + ACTIONS(1341), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(522), 12, + ACTIONS(1334), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56864,15 +56601,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(524), 26, - sym__automatic_semicolon, + ACTIONS(1336), 26, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -56891,57 +56628,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23926] = 5, - ACTIONS(614), 1, - sym__automatic_semicolon, + [23593] = 26, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1443), 1, + anon_sym_LPAREN, + ACTIONS(1445), 1, + anon_sym_LBRACK, + ACTIONS(1447), 1, + anon_sym_DOT, + ACTIONS(1449), 1, + sym_optional_chain, + ACTIONS(1636), 1, + anon_sym_AMP_AMP, + ACTIONS(1638), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1640), 1, + anon_sym_GT_GT, + ACTIONS(1644), 1, + anon_sym_AMP, + ACTIONS(1646), 1, + anon_sym_CARET, + ACTIONS(1648), 1, + anon_sym_PIPE, + ACTIONS(1652), 1, + anon_sym_PERCENT, + ACTIONS(1654), 1, + anon_sym_STAR_STAR, + ACTIONS(1662), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1664), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(606), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(610), 12, + ACTIONS(1451), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1632), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1642), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1650), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1658), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(612), 23, - sym__ternary_qmark, + ACTIONS(1660), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(719), 2, + sym_template_string, + sym_arguments, + ACTIONS(1634), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1656), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1513), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + [23687] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, anon_sym_LBRACK, + ACTIONS(1314), 1, anon_sym_DOT, + ACTIONS(1316), 1, sym_optional_chain, + ACTIONS(1375), 1, anon_sym_AMP_AMP, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, anon_sym_PERCENT, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1403), 1, + sym__ternary_qmark, + ACTIONS(1693), 1, + anon_sym_COMMA, + ACTIONS(1695), 1, + anon_sym_RPAREN, + STATE(1105), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1397), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23977] = 3, + [23784] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(610), 12, + ACTIONS(548), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56954,7 +56782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(612), 26, + ACTIONS(550), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -56981,80 +56809,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24024] = 28, + [23831] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, - ACTIONS(1691), 1, - anon_sym_COMMA, ACTIONS(1693), 1, - anon_sym_RPAREN, - STATE(1110), 1, + anon_sym_COMMA, + ACTIONS(1697), 1, + anon_sym_RBRACK, + STATE(1105), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24121] = 3, + [23928] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 12, + ACTIONS(1453), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57067,7 +56895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1439), 26, + ACTIONS(1455), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -57094,16 +56922,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24168] = 5, - ACTIONS(536), 1, - sym__automatic_semicolon, + [23975] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(528), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(532), 12, + ACTIONS(1563), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57116,10 +56939,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(534), 23, + ACTIONS(1565), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -57140,18 +56966,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24219] = 5, - ACTIONS(1245), 1, - anon_sym_EQ, + [24022] = 5, + ACTIONS(582), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1271), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1201), 12, + ACTIONS(574), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(578), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57164,9 +56988,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1203), 21, + ACTIONS(580), 23, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57186,124 +57012,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24270] = 28, + [24073] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, - ACTIONS(1691), 1, + ACTIONS(1693), 1, anon_sym_COMMA, - ACTIONS(1695), 1, + ACTIONS(1699), 1, anon_sym_RBRACK, - STATE(1110), 1, + STATE(1105), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24367] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1551), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1553), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [24170] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1312), 1, anon_sym_LBRACK, + ACTIONS(1314), 1, anon_sym_DOT, + ACTIONS(1316), 1, sym_optional_chain, + ACTIONS(1375), 1, anon_sym_AMP_AMP, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, anon_sym_PERCENT, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1403), 1, + sym__ternary_qmark, + ACTIONS(1693), 1, + anon_sym_COMMA, + ACTIONS(1701), 1, + anon_sym_RPAREN, + STATE(1105), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1397), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [24414] = 3, + [24267] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1527), 12, + ACTIONS(1439), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57316,7 +57167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1529), 26, + ACTIONS(1441), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -57343,11 +57194,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24461] = 3, + [24314] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1575), 12, + ACTIONS(1419), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57360,7 +57211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1577), 26, + ACTIONS(1421), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -57387,56 +57238,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24508] = 4, - ACTIONS(1697), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1475), 14, - anon_sym_STAR, - anon_sym_in, - anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1477), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + [24361] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1312), 1, anon_sym_LBRACK, + ACTIONS(1314), 1, anon_sym_DOT, + ACTIONS(1316), 1, sym_optional_chain, + ACTIONS(1375), 1, anon_sym_AMP_AMP, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, anon_sym_PERCENT, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, + ACTIONS(1403), 1, + sym__ternary_qmark, + ACTIONS(1693), 1, + anon_sym_COMMA, + ACTIONS(1703), 1, + anon_sym_RBRACE, + STATE(1105), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [24557] = 3, + ACTIONS(1369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1397), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1399), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [24458] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1419), 12, + ACTIONS(1357), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57449,7 +57324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 26, + ACTIONS(1359), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -57476,18 +57351,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24604] = 5, - ACTIONS(1339), 1, - anon_sym_EQ, + [24505] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1699), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1332), 12, + ACTIONS(1435), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57500,9 +57368,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1334), 21, + ACTIONS(1437), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57522,18 +57395,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24655] = 5, - ACTIONS(1353), 1, - anon_sym_EQ, + [24552] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1701), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1346), 12, + ACTIONS(1423), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57546,9 +57412,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1348), 21, + ACTIONS(1425), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57568,18 +57439,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24706] = 5, - ACTIONS(514), 1, - anon_sym_EQ, + [24599] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(510), 12, + ACTIONS(1571), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57592,9 +57456,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(512), 21, + ACTIONS(1573), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57614,17 +57483,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24757] = 6, - ACTIONS(1339), 1, + [24646] = 6, + ACTIONS(516), 1, anon_sym_EQ, - ACTIONS(1699), 1, - anon_sym_of, ACTIONS(1705), 1, anon_sym_in, + ACTIONS(1708), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1332), 11, + ACTIONS(512), 11, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -57636,7 +57505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1334), 24, + ACTIONS(514), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -57661,18 +57530,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24810] = 6, - ACTIONS(1353), 1, - anon_sym_EQ, - ACTIONS(1701), 1, - anon_sym_of, - ACTIONS(1708), 1, - anon_sym_in, + [24699] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1346), 11, + ACTIONS(1523), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -57683,11 +57547,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1348), 24, + ACTIONS(1409), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -57708,18 +57574,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24863] = 6, - ACTIONS(514), 1, - anon_sym_EQ, - ACTIONS(1703), 1, - anon_sym_of, - ACTIONS(1711), 1, - anon_sym_in, + [24746] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(510), 11, + ACTIONS(1427), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -57730,11 +57591,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(512), 24, + ACTIONS(1429), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -57755,7 +57618,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24916] = 3, + [24793] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(709), 1, + anon_sym_COMMA, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1375), 1, + anon_sym_AMP_AMP, + ACTIONS(1377), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, + anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, + anon_sym_PERCENT, + ACTIONS(1393), 1, + anon_sym_STAR_STAR, + ACTIONS(1401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1403), 1, + sym__ternary_qmark, + ACTIONS(1710), 1, + anon_sym_RPAREN, + STATE(1334), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1397), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1399), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [24890] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -57799,432 +57731,396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24963] = 28, + [24937] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(709), 1, + anon_sym_COMMA, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, - ACTIONS(1691), 1, - anon_sym_COMMA, - ACTIONS(1714), 1, - anon_sym_RPAREN, - STATE(1110), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(1712), 1, + anon_sym_RBRACK, + STATE(1318), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25060] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(705), 1, - anon_sym_COMMA, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1716), 1, - anon_sym_RBRACK, - STATE(1329), 1, - aux_sym_array_repeat1, + [25034] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1575), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [25157] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(705), 1, + ACTIONS(1577), 26, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - ACTIONS(1306), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1308), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1310), 1, anon_sym_DOT, - ACTIONS(1312), 1, sym_optional_chain, - ACTIONS(1361), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1718), 1, - anon_sym_RPAREN, - STATE(1346), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [25254] = 28, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [25081] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, - ACTIONS(1691), 1, + ACTIONS(1693), 1, anon_sym_COMMA, - ACTIONS(1720), 1, - anon_sym_RBRACK, - STATE(1110), 1, + ACTIONS(1714), 1, + anon_sym_RPAREN, + STATE(1105), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25351] = 28, + [25178] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(709), 1, + anon_sym_COMMA, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, - ACTIONS(1691), 1, - anon_sym_COMMA, - ACTIONS(1722), 1, - anon_sym_RBRACE, - STATE(1110), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(1716), 1, + anon_sym_RBRACK, + STATE(1260), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25448] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, + [25275] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1463), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1465), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1308), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1310), 1, anon_sym_DOT, - ACTIONS(1312), 1, sym_optional_chain, - ACTIONS(1361), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1691), 1, - anon_sym_COMMA, - ACTIONS(1724), 1, - anon_sym_RBRACK, - STATE(1110), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [25322] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1549), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1551), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [25369] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1585), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1587), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [25545] = 6, - ACTIONS(1277), 1, - anon_sym_in, - ACTIONS(1280), 1, - anon_sym_of, - ACTIONS(1282), 1, - anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [25416] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1201), 11, + ACTIONS(578), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -58235,11 +58131,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1203), 24, + ACTIONS(580), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -58260,18 +58158,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25598] = 5, - ACTIONS(1292), 1, + [25463] = 5, + ACTIONS(1227), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1289), 4, + ACTIONS(1295), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1201), 12, + ACTIONS(1203), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58284,7 +58182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1203), 21, + ACTIONS(1205), 21, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -58306,86 +58204,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25649] = 28, + [25514] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, - ACTIONS(1691), 1, + ACTIONS(1693), 1, anon_sym_COMMA, - ACTIONS(1726), 1, + ACTIONS(1718), 1, anon_sym_RPAREN, - STATE(1110), 1, + STATE(1105), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25746] = 6, - ACTIONS(1393), 1, + [25611] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1543), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1545), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1395), 1, anon_sym_DOT, - ACTIONS(1629), 1, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [25658] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1401), 12, + ACTIONS(1203), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58398,7 +58334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1403), 23, + ACTIONS(1205), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -58406,6 +58342,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -58422,11 +58361,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25799] = 3, + [25705] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1401), 12, + ACTIONS(1589), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58439,7 +58378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1403), 26, + ACTIONS(1591), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -58466,147 +58405,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25846] = 28, - ACTIONS(402), 1, + [25752] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(620), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(622), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1306), 1, + [25799] = 5, + ACTIONS(624), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(616), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(620), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(622), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1308), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1310), 1, anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [25850] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, - ACTIONS(1691), 1, - anon_sym_COMMA, - ACTIONS(1728), 1, - anon_sym_RPAREN, - STATE(1110), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25943] = 26, + ACTIONS(1720), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [25943] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(709), 1, + anon_sym_COMMA, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, + ACTIONS(1722), 1, + anon_sym_RBRACK, + STATE(1260), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1730), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [26036] = 3, + [26040] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1555), 12, + ACTIONS(524), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58619,7 +58648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1557), 26, + ACTIONS(526), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -58646,11 +58675,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26083] = 3, + [26087] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1447), 12, + ACTIONS(568), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58663,7 +58692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1449), 26, + ACTIONS(570), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -58690,149 +58719,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26130] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, + [26134] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(602), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(604), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1308), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1310), 1, anon_sym_DOT, - ACTIONS(1312), 1, sym_optional_chain, - ACTIONS(1361), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1691), 1, - anon_sym_COMMA, - ACTIONS(1732), 1, - anon_sym_RPAREN, - STATE(1110), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [26181] = 5, + ACTIONS(528), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(520), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(524), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [26227] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(705), 1, + ACTIONS(526), 23, + sym__ternary_qmark, anon_sym_COMMA, - ACTIONS(1306), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1310), 1, anon_sym_DOT, - ACTIONS(1312), 1, sym_optional_chain, - ACTIONS(1361), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1734), 1, - anon_sym_RPAREN, - STATE(1301), 1, - aux_sym_array_repeat1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [26232] = 5, + ACTIONS(572), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(564), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(568), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(570), 23, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [26324] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [26283] = 5, + ACTIONS(516), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 12, + ACTIONS(1708), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(512), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58845,14 +58879,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1453), 26, - sym__automatic_semicolon, + ACTIONS(514), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58872,168 +58901,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26371] = 28, + [26334] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, - ACTIONS(1691), 1, + ACTIONS(1693), 1, anon_sym_COMMA, - ACTIONS(1736), 1, + ACTIONS(1724), 1, anon_sym_RPAREN, - STATE(1110), 1, + STATE(1105), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26468] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1455), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1457), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + [26431] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(709), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1310), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1312), 1, anon_sym_LBRACK, + ACTIONS(1314), 1, anon_sym_DOT, + ACTIONS(1316), 1, sym_optional_chain, + ACTIONS(1375), 1, anon_sym_AMP_AMP, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, anon_sym_PERCENT, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26515] = 3, + ACTIONS(1403), 1, + sym__ternary_qmark, + ACTIONS(1726), 1, + anon_sym_RPAREN, + STATE(1323), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1559), 12, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1561), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26562] = 3, + [26528] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1459), 12, + ACTIONS(1519), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59046,7 +59056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1461), 26, + ACTIONS(1521), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -59073,11 +59083,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26609] = 3, + [26575] = 4, + ACTIONS(1276), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1563), 12, + ACTIONS(1203), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59090,13 +59102,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1565), 26, + ACTIONS(1205), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -59117,13 +59128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26656] = 4, - ACTIONS(1282), 1, - anon_sym_EQ, + [26624] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1201), 12, + ACTIONS(1475), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59136,12 +59145,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1203), 25, + ACTIONS(1477), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -59162,13 +59172,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26705] = 3, + [26671] = 4, + ACTIONS(1728), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1471), 12, + ACTIONS(1489), 14, anon_sym_STAR, anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -59179,13 +59192,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1473), 26, + anon_sym_instanceof, + ACTIONS(1491), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -59202,15 +59214,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26752] = 3, + [26720] = 5, + ACTIONS(606), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1423), 12, + ACTIONS(598), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(602), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59223,13 +59239,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1425), 26, - sym__automatic_semicolon, + ACTIONS(604), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -59250,13 +59263,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26799] = 4, - ACTIONS(1697), 1, - sym_regex_flags, + [26771] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1475), 13, + ACTIONS(1361), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59269,13 +59280,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1477), 24, + ACTIONS(1363), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -59292,14 +59303,15 @@ 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, - [26848] = 3, + [26818] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1407), 12, + ACTIONS(1525), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59312,7 +59324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1409), 26, + ACTIONS(1495), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -59339,80 +59351,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26895] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1691), 1, - anon_sym_COMMA, - ACTIONS(1738), 1, - anon_sym_RBRACE, - STATE(1110), 1, - aux_sym_sequence_expression_repeat1, + [26865] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [26992] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1481), 12, + ACTIONS(1527), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59425,7 +59368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1483), 26, + ACTIONS(1529), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -59452,78 +59395,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27039] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1391), 1, - anon_sym_LPAREN, - ACTIONS(1393), 1, - anon_sym_LBRACK, - ACTIONS(1395), 1, - anon_sym_DOT, - ACTIONS(1397), 1, - sym_optional_chain, - ACTIONS(1595), 1, - anon_sym_AMP_AMP, - ACTIONS(1597), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1599), 1, - anon_sym_GT_GT, - ACTIONS(1603), 1, - anon_sym_AMP, - ACTIONS(1605), 1, - anon_sym_CARET, - ACTIONS(1607), 1, - anon_sym_PIPE, - ACTIONS(1611), 1, - anon_sym_PERCENT, - ACTIONS(1613), 1, - anon_sym_STAR_STAR, - ACTIONS(1621), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1623), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1399), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1591), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1609), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1617), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1619), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(670), 2, - sym_template_string, - sym_arguments, - ACTIONS(1593), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1615), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1645), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [27132] = 3, + [26912] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1427), 12, + ACTIONS(588), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59536,7 +59412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1429), 26, + ACTIONS(590), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -59563,149 +59439,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27179] = 28, + [26959] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, - ACTIONS(1691), 1, + ACTIONS(1693), 1, anon_sym_COMMA, - ACTIONS(1740), 1, - anon_sym_RPAREN, - STATE(1110), 1, + ACTIONS(1730), 1, + anon_sym_RBRACK, + STATE(1105), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27276] = 28, + [27056] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, - ACTIONS(1691), 1, + ACTIONS(1693), 1, anon_sym_COMMA, - ACTIONS(1742), 1, + ACTIONS(1732), 1, anon_sym_RPAREN, - STATE(1110), 1, + STATE(1105), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27373] = 3, + [27153] = 6, + ACTIONS(1445), 1, + anon_sym_LBRACK, + ACTIONS(1447), 1, + anon_sym_DOT, + ACTIONS(1674), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1567), 12, + ACTIONS(1559), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59718,7 +59600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1569), 26, + ACTIONS(1561), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -59726,9 +59608,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -59745,11 +59624,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27420] = 3, + [27206] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1201), 12, + ACTIONS(1559), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59762,7 +59641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1203), 26, + ACTIONS(1561), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -59789,80 +59668,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27467] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(705), 1, - anon_sym_COMMA, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1744), 1, - anon_sym_RBRACK, - STATE(1287), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27564] = 3, + [27253] = 5, + ACTIONS(1292), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1571), 12, + ACTIONS(1289), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1203), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59875,14 +59692,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1573), 26, - sym__automatic_semicolon, + ACTIONS(1205), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59902,11 +59714,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27611] = 3, + [27304] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1411), 12, + ACTIONS(1537), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59919,7 +59731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1413), 26, + ACTIONS(1539), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -59946,55 +59758,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27658] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(532), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(534), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [27351] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1312), 1, anon_sym_LBRACK, + ACTIONS(1314), 1, anon_sym_DOT, + ACTIONS(1316), 1, sym_optional_chain, + ACTIONS(1375), 1, anon_sym_AMP_AMP, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, anon_sym_PERCENT, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1403), 1, + sym__ternary_qmark, + ACTIONS(1693), 1, + anon_sym_COMMA, + ACTIONS(1734), 1, + anon_sym_COLON, + STATE(1105), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1397), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27705] = 3, + [27448] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1523), 12, + ACTIONS(1547), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60007,7 +59844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1525), 26, + ACTIONS(1531), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -60034,101 +59871,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27752] = 5, - ACTIONS(1286), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1284), 4, + [27495] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(709), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1201), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1203), 21, - sym__ternary_qmark, + ACTIONS(1310), 1, anon_sym_LPAREN, + ACTIONS(1312), 1, anon_sym_LBRACK, + ACTIONS(1314), 1, anon_sym_DOT, + ACTIONS(1316), 1, sym_optional_chain, + ACTIONS(1375), 1, anon_sym_AMP_AMP, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, anon_sym_PERCENT, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27803] = 3, + ACTIONS(1403), 1, + sym__ternary_qmark, + ACTIONS(1736), 1, + anon_sym_RPAREN, + STATE(1273), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1531), 12, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1533), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1399), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27850] = 3, + [27592] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1487), 12, + ACTIONS(558), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60141,7 +59957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 26, + ACTIONS(560), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -60168,16 +59984,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27897] = 5, - ACTIONS(546), 1, - sym__automatic_semicolon, + [27639] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(538), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(542), 12, + ACTIONS(1511), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60190,10 +60001,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(544), 23, + ACTIONS(1513), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -60214,11 +60028,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27948] = 3, + [27686] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1535), 12, + ACTIONS(1533), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60231,7 +60045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1537), 26, + ACTIONS(1535), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -60258,11 +60072,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27995] = 3, + [27733] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1535), 12, + ACTIONS(1507), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60275,7 +60089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1537), 26, + ACTIONS(1509), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -60302,11 +60116,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28042] = 3, + [27780] = 5, + ACTIONS(552), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1433), 12, + ACTIONS(544), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(548), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60319,13 +60138,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1435), 26, - sym__automatic_semicolon, + ACTIONS(550), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -60346,239 +60162,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28089] = 28, + [27831] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, - ACTIONS(1691), 1, + ACTIONS(1693), 1, anon_sym_COMMA, - ACTIONS(1746), 1, + ACTIONS(1738), 1, anon_sym_RPAREN, - STATE(1110), 1, + STATE(1105), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28186] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1535), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1537), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [27928] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1312), 1, anon_sym_LBRACK, + ACTIONS(1314), 1, anon_sym_DOT, + ACTIONS(1316), 1, sym_optional_chain, + ACTIONS(1375), 1, anon_sym_AMP_AMP, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, anon_sym_PERCENT, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28233] = 3, + ACTIONS(1403), 1, + sym__ternary_qmark, + ACTIONS(1693), 1, + anon_sym_COMMA, + ACTIONS(1740), 1, + anon_sym_RBRACK, + STATE(1105), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1495), 12, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1497), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1399), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [28025] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1312), 1, anon_sym_LBRACK, + ACTIONS(1314), 1, anon_sym_DOT, + ACTIONS(1316), 1, sym_optional_chain, + ACTIONS(1375), 1, anon_sym_AMP_AMP, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, anon_sym_PERCENT, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1403), 1, + sym__ternary_qmark, + ACTIONS(1693), 1, + anon_sym_COMMA, + ACTIONS(1742), 1, + anon_sym_RBRACE, + STATE(1105), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1397), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28280] = 28, + [28122] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(705), 1, - anon_sym_COMMA, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, - ACTIONS(1748), 1, + ACTIONS(1693), 1, + anon_sym_COMMA, + ACTIONS(1744), 1, anon_sym_RPAREN, - STATE(1279), 1, - aux_sym_array_repeat1, + STATE(1105), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28377] = 4, - ACTIONS(1275), 1, + [28219] = 5, + ACTIONS(1271), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1201), 12, + ACTIONS(1269), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1203), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60591,13 +60462,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1203), 25, - sym__automatic_semicolon, + ACTIONS(1205), 21, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60617,11 +60484,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28426] = 3, + [28270] = 5, + ACTIONS(592), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1535), 12, + ACTIONS(584), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(588), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60634,13 +60506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1537), 26, - sym__automatic_semicolon, + ACTIONS(590), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -60661,11 +60530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28473] = 3, + [28321] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1415), 12, + ACTIONS(1471), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60678,7 +60547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1417), 26, + ACTIONS(1473), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -60705,221 +60574,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28520] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1391), 1, + [28368] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1497), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1499), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1393), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1395), 1, anon_sym_DOT, - ACTIONS(1397), 1, sym_optional_chain, - ACTIONS(1595), 1, anon_sym_AMP_AMP, - ACTIONS(1597), 1, anon_sym_PIPE_PIPE, - ACTIONS(1599), 1, - anon_sym_GT_GT, - ACTIONS(1603), 1, - anon_sym_AMP, - ACTIONS(1605), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1607), 1, - anon_sym_PIPE, - ACTIONS(1611), 1, anon_sym_PERCENT, - ACTIONS(1613), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1623), 1, - sym__ternary_qmark, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [28415] = 6, + ACTIONS(1276), 1, + anon_sym_EQ, + ACTIONS(1284), 1, + anon_sym_in, + ACTIONS(1287), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1203), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(670), 2, - sym_template_string, - sym_arguments, - ACTIONS(1499), 3, + ACTIONS(1205), 24, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1593), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1615), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [28613] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1310), 1, anon_sym_DOT, - ACTIONS(1312), 1, sym_optional_chain, - ACTIONS(1361), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1691), 1, - anon_sym_COMMA, - ACTIONS(1750), 1, - anon_sym_RBRACK, - STATE(1110), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [28468] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1501), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1503), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [28710] = 28, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [28515] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, - ACTIONS(1691), 1, + ACTIONS(1693), 1, anon_sym_COMMA, - ACTIONS(1752), 1, - anon_sym_COLON, - STATE(1110), 1, + ACTIONS(1746), 1, + anon_sym_RBRACE, + STATE(1105), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28807] = 5, - ACTIONS(556), 1, - sym__automatic_semicolon, + [28612] = 4, + ACTIONS(1728), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(548), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(552), 12, + ACTIONS(1489), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60932,54 +60797,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(554), 23, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28858] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1539), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1541), 26, + ACTIONS(1491), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -60996,84 +60820,88 @@ 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, - [28905] = 28, - ACTIONS(402), 1, + [28661] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1597), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1599), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1607), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1613), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1623), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1625), 1, sym__ternary_qmark, - ACTIONS(1691), 1, - anon_sym_COMMA, - ACTIONS(1754), 1, - anon_sym_RPAREN, - STATE(1110), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29002] = 3, + ACTIONS(1684), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [28754] = 5, + ACTIONS(1341), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1543), 12, + ACTIONS(1748), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1334), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61086,14 +60914,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1545), 26, - sym__automatic_semicolon, + ACTIONS(1336), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61113,18 +60936,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29049] = 5, - ACTIONS(566), 1, - sym__automatic_semicolon, + [28805] = 6, + ACTIONS(1355), 1, + anon_sym_EQ, + ACTIONS(1750), 1, + anon_sym_in, + ACTIONS(1753), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(558), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(562), 12, + ACTIONS(1348), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -61135,7 +60958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(564), 23, + ACTIONS(1350), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -61159,11 +60983,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29100] = 3, + [28858] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1547), 12, + ACTIONS(1479), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61176,7 +61000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1549), 26, + ACTIONS(1481), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -61203,11 +61027,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29147] = 3, + [28905] = 5, + ACTIONS(1355), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1753), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1348), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1350), 21, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [28956] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(542), 12, + ACTIONS(1555), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61220,7 +61090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(544), 26, + ACTIONS(1557), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -61247,13 +61117,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29194] = 3, + [29003] = 6, + ACTIONS(1341), 1, + anon_sym_EQ, + ACTIONS(1748), 1, + anon_sym_of, + ACTIONS(1755), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(552), 12, + ACTIONS(1334), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -61264,13 +61139,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(554), 26, + ACTIONS(1336), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -61291,11 +61164,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29241] = 3, + [29056] = 4, + ACTIONS(1280), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(562), 12, + ACTIONS(1203), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61308,11 +61183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(564), 26, + ACTIONS(1205), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, @@ -61335,11 +61209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29288] = 3, + [29105] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1501), 12, + ACTIONS(1467), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61352,7 +61226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1503), 26, + ACTIONS(1469), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -61379,80 +61253,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29335] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1691), 1, - anon_sym_COMMA, - ACTIONS(1756), 1, - anon_sym_RBRACE, - STATE(1110), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [29432] = 3, + [29152] = 5, + ACTIONS(562), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1505), 12, + ACTIONS(554), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(558), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61465,13 +61275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1507), 26, - sym__automatic_semicolon, + ACTIONS(560), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -61492,11 +61299,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29479] = 3, + [29203] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1509), 12, + ACTIONS(1415), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61509,7 +61316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1511), 26, + ACTIONS(1417), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -61536,85 +61343,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29526] = 28, - ACTIONS(402), 1, + [29250] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1597), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1599), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1607), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1613), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1623), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1625), 1, sym__ternary_qmark, - ACTIONS(1691), 1, - anon_sym_COMMA, - ACTIONS(1758), 1, - anon_sym_RPAREN, - STATE(1110), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1541), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29623] = 5, - ACTIONS(588), 1, - sym__automatic_semicolon, + [29343] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(580), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(584), 12, + ACTIONS(1555), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61627,10 +61427,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(586), 23, + ACTIONS(1557), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -61651,60 +61454,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29674] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1515), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1517), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [29390] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1312), 1, anon_sym_LBRACK, + ACTIONS(1314), 1, anon_sym_DOT, + ACTIONS(1316), 1, sym_optional_chain, + ACTIONS(1375), 1, anon_sym_AMP_AMP, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1379), 1, + anon_sym_GT_GT, + ACTIONS(1383), 1, + anon_sym_AMP, + ACTIONS(1385), 1, anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, anon_sym_PERCENT, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1403), 1, + sym__ternary_qmark, + ACTIONS(1693), 1, + anon_sym_COMMA, + ACTIONS(1758), 1, + anon_sym_RPAREN, + STATE(1105), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1381), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1389), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1397), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [29721] = 5, - ACTIONS(598), 1, - sym__automatic_semicolon, + [29487] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(590), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(594), 12, + ACTIONS(1457), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61717,10 +61540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(596), 23, + ACTIONS(1459), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -61741,80 +61567,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29772] = 28, + [29534] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(705), 1, - anon_sym_COMMA, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, + ACTIONS(1693), 1, + anon_sym_COMMA, ACTIONS(1760), 1, - anon_sym_RBRACK, - STATE(1287), 1, - aux_sym_array_repeat1, + anon_sym_RPAREN, + STATE(1105), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29869] = 3, + [29631] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1519), 12, + ACTIONS(1411), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61827,7 +61653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1521), 26, + ACTIONS(1413), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -61854,11 +61680,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29916] = 3, + [29678] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1467), 12, + ACTIONS(1555), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61871,7 +61697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1469), 26, + ACTIONS(1557), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -61898,138 +61724,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29963] = 21, + [29725] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1493), 1, - anon_sym_PIPE, - ACTIONS(1766), 1, + ACTIONS(1375), 1, + anon_sym_AMP_AMP, + ACTIONS(1377), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1774), 1, + ACTIONS(1385), 1, + anon_sym_CARET, + ACTIONS(1387), 1, + anon_sym_PIPE, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1776), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, + ACTIONS(1401), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1403), 1, + sym__ternary_qmark, + ACTIONS(1693), 1, + anon_sym_COMMA, + ACTIONS(1762), 1, + anon_sym_RPAREN, + STATE(1105), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1762), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 7, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [30045] = 22, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1493), 1, - anon_sym_PIPE, - ACTIONS(1766), 1, - anon_sym_GT_GT, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1774), 1, - anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, - anon_sym_CARET, + [29822] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1762), 2, + ACTIONS(1485), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1768), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1772), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1764), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1778), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1491), 6, + ACTIONS(1483), 26, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [30129] = 5, - ACTIONS(1786), 1, - anon_sym_LPAREN, - ACTIONS(1789), 1, - anon_sym_COLON, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [29869] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1447), 12, + ACTIONS(1567), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62042,10 +61854,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1449), 23, + ACTIONS(1569), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -62066,34 +61881,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30179] = 13, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1774), 1, - anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, + [29916] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1762), 2, + ACTIONS(1555), 12, anon_sym_STAR, - anon_sym_SLASH, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1493), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -62102,46 +61895,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 14, + ACTIONS(1557), 26, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [30245] = 11, - ACTIONS(402), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1306), 1, + [29963] = 5, + ACTIONS(1764), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, + ACTIONS(1767), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1493), 12, + ACTIONS(1203), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62154,683 +61946,769 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 15, + ACTIONS(1205), 23, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [30307] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [30013] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1773), 1, + anon_sym_AMP_AMP, + ACTIONS(1775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, + ACTIONS(1781), 1, anon_sym_AMP, - ACTIONS(1774), 1, - anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, + ACTIONS(1783), 1, anon_sym_CARET, - ACTIONS(1791), 1, - anon_sym_AMP_AMP, - ACTIONS(1793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, + ACTIONS(1785), 1, anon_sym_PIPE, - ACTIONS(1797), 1, - anon_sym_QMARK_QMARK, + ACTIONS(1789), 1, + anon_sym_PERCENT, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, ACTIONS(1799), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1801), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1405), 2, + ACTIONS(1583), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1762), 2, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1793), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30399] = 26, - ACTIONS(402), 1, + [30105] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1597), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1599), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1607), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1613), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1623), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1625), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1801), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(509), 2, + ACTIONS(1803), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30491] = 18, + [30197] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1773), 1, + anon_sym_AMP_AMP, + ACTIONS(1775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1774), 1, + ACTIONS(1781), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_CARET, + ACTIONS(1785), 1, + anon_sym_PIPE, + ACTIONS(1789), 1, anon_sym_PERCENT, - ACTIONS(1776), 1, + ACTIONS(1791), 1, anon_sym_STAR_STAR, + ACTIONS(1799), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1801), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1762), 2, + ACTIONS(1409), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(509), 2, + ACTIONS(1795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1797), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1793), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1493), 4, + [30289] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1773), 1, + anon_sym_AMP_AMP, + ACTIONS(1775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1777), 1, + anon_sym_GT_GT, + ACTIONS(1781), 1, anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_CARET, + ACTIONS(1785), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1491), 9, + ACTIONS(1789), 1, + anon_sym_PERCENT, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, + ACTIONS(1799), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1801), 1, sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1531), 2, anon_sym_LBRACE, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(1769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [30567] = 24, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1771), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1793), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30381] = 24, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1773), 1, + anon_sym_AMP_AMP, + ACTIONS(1775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, + ACTIONS(1781), 1, anon_sym_AMP, - ACTIONS(1774), 1, - anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, + ACTIONS(1783), 1, anon_sym_CARET, - ACTIONS(1791), 1, - anon_sym_AMP_AMP, - ACTIONS(1793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, + ACTIONS(1785), 1, anon_sym_PIPE, + ACTIONS(1789), 1, + anon_sym_PERCENT, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1762), 2, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1793), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 4, + ACTIONS(1515), 4, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, anon_sym_QMARK_QMARK, - [30655] = 26, + [30469] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1773), 1, + anon_sym_AMP_AMP, + ACTIONS(1775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, + ACTIONS(1781), 1, anon_sym_AMP, - ACTIONS(1774), 1, - anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, + ACTIONS(1783), 1, anon_sym_CARET, - ACTIONS(1791), 1, - anon_sym_AMP_AMP, - ACTIONS(1793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, + ACTIONS(1785), 1, anon_sym_PIPE, - ACTIONS(1797), 1, - anon_sym_QMARK_QMARK, + ACTIONS(1789), 1, + anon_sym_PERCENT, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, ACTIONS(1799), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1801), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1513), 2, + ACTIONS(1495), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1762), 2, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1793), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30747] = 26, + [30561] = 18, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1774), 1, + ACTIONS(1789), 1, anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, - anon_sym_CARET, ACTIONS(1791), 1, - anon_sym_AMP_AMP, - ACTIONS(1793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, - anon_sym_PIPE, - ACTIONS(1797), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1799), 1, - sym__ternary_qmark, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1517), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1762), 2, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1782), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1793), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30839] = 26, + ACTIONS(1517), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1515), 9, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + [30637] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1773), 1, + anon_sym_AMP_AMP, + ACTIONS(1775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, + ACTIONS(1781), 1, anon_sym_AMP, - ACTIONS(1774), 1, - anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, + ACTIONS(1783), 1, anon_sym_CARET, - ACTIONS(1791), 1, - anon_sym_AMP_AMP, - ACTIONS(1793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, + ACTIONS(1785), 1, anon_sym_PIPE, - ACTIONS(1797), 1, - anon_sym_QMARK_QMARK, + ACTIONS(1789), 1, + anon_sym_PERCENT, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, ACTIONS(1799), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1801), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1541), 2, + ACTIONS(1363), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1762), 2, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1793), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30931] = 26, + [30729] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1773), 1, + anon_sym_AMP_AMP, + ACTIONS(1775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, + ACTIONS(1781), 1, anon_sym_AMP, - ACTIONS(1774), 1, - anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, + ACTIONS(1783), 1, anon_sym_CARET, - ACTIONS(1791), 1, - anon_sym_AMP_AMP, - ACTIONS(1793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, + ACTIONS(1785), 1, anon_sym_PIPE, - ACTIONS(1797), 1, - anon_sym_QMARK_QMARK, + ACTIONS(1789), 1, + anon_sym_PERCENT, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, ACTIONS(1799), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1801), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1549), 2, + ACTIONS(1553), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1762), 2, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1793), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31023] = 26, + [30821] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1773), 1, + anon_sym_AMP_AMP, + ACTIONS(1775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, + ACTIONS(1781), 1, anon_sym_AMP, - ACTIONS(1774), 1, - anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, + ACTIONS(1783), 1, anon_sym_CARET, - ACTIONS(1791), 1, - anon_sym_AMP_AMP, - ACTIONS(1793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, + ACTIONS(1785), 1, anon_sym_PIPE, - ACTIONS(1797), 1, - anon_sym_QMARK_QMARK, + ACTIONS(1789), 1, + anon_sym_PERCENT, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, ACTIONS(1799), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1801), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1553), 2, + ACTIONS(1371), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1762), 2, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1793), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31115] = 26, + [30913] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1375), 1, + anon_sym_AMP_AMP, + ACTIONS(1377), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1774), 1, - anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1791), 1, - anon_sym_AMP_AMP, - ACTIONS(1793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1797), 1, + ACTIONS(1391), 1, + anon_sym_PERCENT, + ACTIONS(1393), 1, + anon_sym_STAR_STAR, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1799), 1, + ACTIONS(1403), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1357), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1762), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + ACTIONS(1805), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31207] = 5, - ACTIONS(1247), 1, - anon_sym_EQ, + [31005] = 11, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1295), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1201), 12, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1517), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62843,9 +62721,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1203), 21, + ACTIONS(1515), 15, sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [31067] = 5, + ACTIONS(1807), 1, anon_sym_LPAREN, + ACTIONS(1810), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1427), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1429), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -62865,439 +62782,553 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [31257] = 26, + [31117] = 13, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1789), 1, + anon_sym_PERCENT, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1769), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1517), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1515), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [31183] = 22, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1517), 1, + anon_sym_PIPE, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, + ACTIONS(1781), 1, anon_sym_AMP, - ACTIONS(1774), 1, - anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, + ACTIONS(1783), 1, anon_sym_CARET, + ACTIONS(1789), 1, + anon_sym_PERCENT, ACTIONS(1791), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1797), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1771), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1793), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1515), 6, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, - ACTIONS(1793), 1, anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, - anon_sym_PIPE, - ACTIONS(1797), 1, anon_sym_QMARK_QMARK, - ACTIONS(1799), 1, - sym__ternary_qmark, + [31267] = 21, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1517), 1, + anon_sym_PIPE, + ACTIONS(1777), 1, + anon_sym_GT_GT, + ACTIONS(1781), 1, + anon_sym_AMP, + ACTIONS(1789), 1, + anon_sym_PERCENT, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1431), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1762), 2, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1797), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1771), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1793), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1515), 7, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [31349] = 5, + ACTIONS(1255), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1297), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1203), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1205), 21, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1764), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1778), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [31349] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [31399] = 20, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1774), 1, + ACTIONS(1789), 1, anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, - anon_sym_CARET, ACTIONS(1791), 1, - anon_sym_AMP_AMP, - ACTIONS(1793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, - anon_sym_PIPE, - ACTIONS(1797), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1799), 1, - sym__ternary_qmark, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1435), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1762), 2, + ACTIONS(1517), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1793), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31441] = 26, + ACTIONS(1515), 7, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [31479] = 14, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, - anon_sym_GT_GT, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1774), 1, + ACTIONS(1789), 1, anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, - anon_sym_CARET, ACTIONS(1791), 1, - anon_sym_AMP_AMP, - ACTIONS(1793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, - anon_sym_PIPE, - ACTIONS(1797), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1799), 1, - sym__ternary_qmark, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1445), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1762), 2, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1782), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1517), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1515), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [31533] = 26, + [31547] = 23, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1773), 1, + anon_sym_AMP_AMP, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, + ACTIONS(1781), 1, anon_sym_AMP, - ACTIONS(1774), 1, - anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, + ACTIONS(1783), 1, anon_sym_CARET, - ACTIONS(1791), 1, - anon_sym_AMP_AMP, - ACTIONS(1793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, + ACTIONS(1785), 1, anon_sym_PIPE, - ACTIONS(1797), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1799), 1, - sym__ternary_qmark, + ACTIONS(1789), 1, + anon_sym_PERCENT, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1485), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1762), 2, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1793), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31625] = 27, - ACTIONS(83), 1, + ACTIONS(1515), 5, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [31633] = 22, + ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1595), 1, - anon_sym_AMP_AMP, - ACTIONS(1597), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1599), 1, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, + ACTIONS(1781), 1, anon_sym_AMP, - ACTIONS(1605), 1, + ACTIONS(1783), 1, anon_sym_CARET, - ACTIONS(1607), 1, + ACTIONS(1785), 1, anon_sym_PIPE, - ACTIONS(1611), 1, + ACTIONS(1789), 1, anon_sym_PERCENT, - ACTIONS(1613), 1, + ACTIONS(1791), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1623), 1, - sym__ternary_qmark, - ACTIONS(1803), 1, - anon_sym_SEMI, - ACTIONS(1805), 1, - sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1793), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31719] = 26, + ACTIONS(1515), 6, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [31717] = 11, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, - anon_sym_GT_GT, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1774), 1, - anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, - anon_sym_CARET, ACTIONS(1791), 1, - anon_sym_AMP_AMP, - ACTIONS(1793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, - anon_sym_PIPE, - ACTIONS(1797), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1799), 1, - sym__ternary_qmark, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1489), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1762), 2, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1517), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1768), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1772), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1515), 15, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1764), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1778), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [31811] = 16, + [31779] = 16, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1774), 1, + ACTIONS(1789), 1, anon_sym_PERCENT, - ACTIONS(1776), 1, + ACTIONS(1791), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1762), 2, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1493), 7, + ACTIONS(1517), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -63305,7 +63336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 12, + ACTIONS(1515), 12, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, @@ -63318,756 +63349,811 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [31883] = 26, - ACTIONS(83), 1, + [31851] = 26, + ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1391), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1393), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1397), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1595), 1, + ACTIONS(1773), 1, anon_sym_AMP_AMP, - ACTIONS(1597), 1, + ACTIONS(1775), 1, anon_sym_PIPE_PIPE, - ACTIONS(1599), 1, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1603), 1, + ACTIONS(1781), 1, anon_sym_AMP, - ACTIONS(1605), 1, + ACTIONS(1783), 1, anon_sym_CARET, - ACTIONS(1607), 1, + ACTIONS(1785), 1, anon_sym_PIPE, - ACTIONS(1611), 1, + ACTIONS(1789), 1, anon_sym_PERCENT, - ACTIONS(1613), 1, + ACTIONS(1791), 1, anon_sym_STAR_STAR, - ACTIONS(1621), 1, + ACTIONS(1799), 1, anon_sym_QMARK_QMARK, - ACTIONS(1623), 1, + ACTIONS(1801), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1399), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1591), 2, + ACTIONS(1513), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1609), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1617), 2, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1619), 2, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1807), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(670), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1593), 3, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1615), 3, + ACTIONS(1793), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31975] = 26, + [31943] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1636), 2, + ACTIONS(1679), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32067] = 11, + [32035] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1776), 1, + ACTIONS(1773), 1, + anon_sym_AMP_AMP, + ACTIONS(1775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1777), 1, + anon_sym_GT_GT, + ACTIONS(1781), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_CARET, + ACTIONS(1785), 1, + anon_sym_PIPE, + ACTIONS(1789), 1, + anon_sym_PERCENT, + ACTIONS(1791), 1, anon_sym_STAR_STAR, + ACTIONS(1799), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1801), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1493), 12, + ACTIONS(1505), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1769), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 15, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1771), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1793), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [32129] = 26, + [32127] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1403), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1641), 2, + ACTIONS(1630), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32221] = 22, - ACTIONS(402), 1, + [32219] = 27, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1445), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1597), 1, + anon_sym_AMP_AMP, + ACTIONS(1599), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1601), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, + ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(1774), 1, - anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, + ACTIONS(1607), 1, anon_sym_CARET, - ACTIONS(1795), 1, + ACTIONS(1609), 1, anon_sym_PIPE, + ACTIONS(1613), 1, + anon_sym_PERCENT, + ACTIONS(1615), 1, + anon_sym_STAR_STAR, + ACTIONS(1623), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1625), 1, + sym__ternary_qmark, + ACTIONS(1812), 1, + anon_sym_SEMI, + ACTIONS(1814), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1451), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1762), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1603), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1611), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + ACTIONS(1619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1621), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(719), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1617), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 6, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [32305] = 23, + [32313] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1773), 1, + anon_sym_AMP_AMP, + ACTIONS(1775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, + ACTIONS(1781), 1, anon_sym_AMP, - ACTIONS(1774), 1, - anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, + ACTIONS(1783), 1, anon_sym_CARET, - ACTIONS(1791), 1, - anon_sym_AMP_AMP, - ACTIONS(1795), 1, + ACTIONS(1785), 1, anon_sym_PIPE, + ACTIONS(1789), 1, + anon_sym_PERCENT, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, + ACTIONS(1799), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1801), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1762), 2, + ACTIONS(1431), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1793), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 5, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, + [32405] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1773), 1, + anon_sym_AMP_AMP, + ACTIONS(1775), 1, anon_sym_PIPE_PIPE, + ACTIONS(1777), 1, + anon_sym_GT_GT, + ACTIONS(1781), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_CARET, + ACTIONS(1785), 1, + anon_sym_PIPE, + ACTIONS(1789), 1, + anon_sym_PERCENT, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, + ACTIONS(1799), 1, anon_sym_QMARK_QMARK, - [32391] = 5, - ACTIONS(1809), 1, - anon_sym_LPAREN, - ACTIONS(1812), 1, - anon_sym_COLON, + ACTIONS(1801), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1201), 12, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1483), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1769), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1203), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1771), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1793), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [32441] = 14, + [32497] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1774), 1, + ACTIONS(1773), 1, + anon_sym_AMP_AMP, + ACTIONS(1775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1777), 1, + anon_sym_GT_GT, + ACTIONS(1781), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_CARET, + ACTIONS(1785), 1, + anon_sym_PIPE, + ACTIONS(1789), 1, anon_sym_PERCENT, - ACTIONS(1776), 1, + ACTIONS(1791), 1, anon_sym_STAR_STAR, + ACTIONS(1799), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1801), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1762), 2, + ACTIONS(1487), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1772), 2, + ACTIONS(1779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(509), 2, + ACTIONS(1795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1797), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1493), 8, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1491), 14, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(1793), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [32509] = 20, + [32589] = 20, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1820), 1, anon_sym_GT_GT, - ACTIONS(1774), 1, + ACTIONS(1826), 1, anon_sym_PERCENT, - ACTIONS(1776), 1, + ACTIONS(1828), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1493), 2, + ACTIONS(1517), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1762), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1834), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1818), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1830), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 7, + ACTIONS(1515), 6, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - [32589] = 11, + [32668] = 24, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1814), 1, + ACTIONS(1820), 1, + anon_sym_GT_GT, + ACTIONS(1826), 1, + anon_sym_PERCENT, + ACTIONS(1828), 1, anon_sym_STAR_STAR, + ACTIONS(1836), 1, + anon_sym_AMP_AMP, + ACTIONS(1838), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1840), 1, + anon_sym_AMP, + ACTIONS(1842), 1, + anon_sym_CARET, + ACTIONS(1844), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1493), 12, + ACTIONS(1816), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1822), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 14, + ACTIONS(1834), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1515), 3, sym__ternary_qmark, anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + anon_sym_QMARK_QMARK, + ACTIONS(1818), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1830), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [32650] = 26, + [32755] = 22, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1820), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1774), 1, + ACTIONS(1826), 1, anon_sym_PERCENT, - ACTIONS(1776), 1, + ACTIONS(1828), 1, anon_sym_STAR_STAR, - ACTIONS(1784), 1, + ACTIONS(1840), 1, + anon_sym_AMP, + ACTIONS(1842), 1, anon_sym_CARET, - ACTIONS(1791), 1, - anon_sym_AMP_AMP, - ACTIONS(1793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, + ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1797), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1799), 1, - sym__ternary_qmark, - ACTIONS(1816), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1762), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1834), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1818), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1830), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32741] = 6, - ACTIONS(1336), 1, - anon_sym_RBRACK, - ACTIONS(1339), 1, - anon_sym_EQ, - ACTIONS(1699), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1332), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1334), 21, + ACTIONS(1515), 5, sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [32838] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, anon_sym_LPAREN, + ACTIONS(1312), 1, anon_sym_LBRACK, + ACTIONS(1314), 1, anon_sym_DOT, + ACTIONS(1316), 1, sym_optional_chain, + ACTIONS(1495), 1, + anon_sym_of, + ACTIONS(1820), 1, + anon_sym_GT_GT, + ACTIONS(1826), 1, + anon_sym_PERCENT, + ACTIONS(1828), 1, + anon_sym_STAR_STAR, + ACTIONS(1836), 1, anon_sym_AMP_AMP, + ACTIONS(1838), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1840), 1, + anon_sym_AMP, + ACTIONS(1842), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1844), 1, + anon_sym_PIPE, + ACTIONS(1846), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [32792] = 6, - ACTIONS(1350), 1, - anon_sym_RBRACK, - ACTIONS(1353), 1, - anon_sym_EQ, - ACTIONS(1701), 1, - anon_sym_COMMA, + ACTIONS(1848), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1346), 12, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1816), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1822), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1348), 21, - sym__ternary_qmark, + ACTIONS(1834), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1818), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1830), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32929] = 13, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, anon_sym_LPAREN, + ACTIONS(1312), 1, anon_sym_LBRACK, + ACTIONS(1314), 1, anon_sym_DOT, + ACTIONS(1316), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(1826), 1, anon_sym_PERCENT, + ACTIONS(1828), 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, - [32843] = 6, - ACTIONS(514), 1, - anon_sym_EQ, - ACTIONS(1341), 1, - anon_sym_RBRACK, - ACTIONS(1703), 1, - anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(510), 12, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1816), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1517), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -64076,904 +64162,764 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(512), 21, + ACTIONS(1515), 13, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [32894] = 26, + [32994] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1773), 1, + anon_sym_AMP_AMP, + ACTIONS(1775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, + ACTIONS(1781), 1, anon_sym_AMP, - ACTIONS(1774), 1, - anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, + ACTIONS(1783), 1, anon_sym_CARET, - ACTIONS(1791), 1, - anon_sym_AMP_AMP, - ACTIONS(1793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, + ACTIONS(1785), 1, anon_sym_PIPE, - ACTIONS(1797), 1, - anon_sym_QMARK_QMARK, + ACTIONS(1789), 1, + anon_sym_PERCENT, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, ACTIONS(1799), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1801), 1, sym__ternary_qmark, - ACTIONS(1818), 1, + ACTIONS(1850), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1762), 2, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1793), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32985] = 26, + [33085] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1773), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1775), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1781), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1783), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1785), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1789), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1791), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1799), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1801), 1, sym__ternary_qmark, - ACTIONS(1820), 1, - anon_sym_RBRACK, + ACTIONS(1852), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1793), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33076] = 26, + [33176] = 11, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, - anon_sym_GT_GT, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1774), 1, - anon_sym_PERCENT, - ACTIONS(1776), 1, + ACTIONS(1828), 1, anon_sym_STAR_STAR, - ACTIONS(1784), 1, - anon_sym_CARET, - ACTIONS(1791), 1, - anon_sym_AMP_AMP, - ACTIONS(1793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, - anon_sym_PIPE, - ACTIONS(1797), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1799), 1, - sym__ternary_qmark, - ACTIONS(1822), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1762), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1768), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1772), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1780), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1782), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1517), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [33167] = 26, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1824), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1515), 14, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [33258] = 26, + [33237] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1553), 1, + anon_sym_of, + ACTIONS(1820), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1774), 1, + ACTIONS(1826), 1, anon_sym_PERCENT, - ACTIONS(1776), 1, + ACTIONS(1828), 1, anon_sym_STAR_STAR, - ACTIONS(1784), 1, - anon_sym_CARET, - ACTIONS(1791), 1, + ACTIONS(1836), 1, anon_sym_AMP_AMP, - ACTIONS(1793), 1, + ACTIONS(1838), 1, anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, + ACTIONS(1840), 1, + anon_sym_AMP, + ACTIONS(1842), 1, + anon_sym_CARET, + ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1797), 1, + ACTIONS(1846), 1, anon_sym_QMARK_QMARK, - ACTIONS(1799), 1, + ACTIONS(1848), 1, sym__ternary_qmark, - ACTIONS(1826), 1, - anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1762), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1834), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1818), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1830), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33349] = 26, + [33328] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1405), 1, + ACTIONS(1431), 1, anon_sym_of, - ACTIONS(1814), 1, + ACTIONS(1820), 1, + anon_sym_GT_GT, + ACTIONS(1826), 1, + anon_sym_PERCENT, + ACTIONS(1828), 1, anon_sym_STAR_STAR, - ACTIONS(1832), 1, + ACTIONS(1836), 1, anon_sym_AMP_AMP, - ACTIONS(1834), 1, + ACTIONS(1838), 1, anon_sym_PIPE_PIPE, - ACTIONS(1836), 1, - anon_sym_GT_GT, ACTIONS(1840), 1, anon_sym_AMP, ACTIONS(1842), 1, anon_sym_CARET, ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1848), 1, - anon_sym_PERCENT, - ACTIONS(1856), 1, + ACTIONS(1846), 1, anon_sym_QMARK_QMARK, - ACTIONS(1858), 1, + ACTIONS(1848), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1838), 2, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1854), 2, + ACTIONS(1834), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1830), 3, + ACTIONS(1818), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1850), 3, + ACTIONS(1830), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33440] = 26, + [33419] = 27, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1684), 1, + anon_sym_of, + ACTIONS(1820), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1774), 1, + ACTIONS(1826), 1, anon_sym_PERCENT, - ACTIONS(1776), 1, + ACTIONS(1828), 1, anon_sym_STAR_STAR, - ACTIONS(1784), 1, - anon_sym_CARET, - ACTIONS(1791), 1, + ACTIONS(1836), 1, anon_sym_AMP_AMP, - ACTIONS(1793), 1, + ACTIONS(1838), 1, anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, + ACTIONS(1840), 1, + anon_sym_AMP, + ACTIONS(1842), 1, + anon_sym_CARET, + ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1797), 1, + ACTIONS(1846), 1, anon_sym_QMARK_QMARK, - ACTIONS(1799), 1, + ACTIONS(1848), 1, sym__ternary_qmark, - ACTIONS(1860), 1, - anon_sym_COLON, + ACTIONS(1854), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1762), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1818), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1834), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1778), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [33531] = 6, - ACTIONS(1284), 1, - anon_sym_COMMA, - ACTIONS(1289), 1, - anon_sym_RBRACK, - ACTIONS(1292), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1201), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1203), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1830), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [33582] = 26, + [33512] = 21, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1431), 1, - anon_sym_of, - ACTIONS(1814), 1, - anon_sym_STAR_STAR, - ACTIONS(1832), 1, - anon_sym_AMP_AMP, - ACTIONS(1834), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1836), 1, + ACTIONS(1517), 1, + anon_sym_PIPE, + ACTIONS(1820), 1, anon_sym_GT_GT, + ACTIONS(1826), 1, + anon_sym_PERCENT, + ACTIONS(1828), 1, + anon_sym_STAR_STAR, ACTIONS(1840), 1, anon_sym_AMP, - ACTIONS(1842), 1, - anon_sym_CARET, - ACTIONS(1844), 1, - anon_sym_PIPE, - ACTIONS(1848), 1, - anon_sym_PERCENT, - ACTIONS(1856), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1858), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1838), 2, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1854), 2, + ACTIONS(1834), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1830), 3, + ACTIONS(1818), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1850), 3, + ACTIONS(1830), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33673] = 26, + ACTIONS(1515), 6, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [33593] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1435), 1, + ACTIONS(1483), 1, anon_sym_of, - ACTIONS(1814), 1, + ACTIONS(1820), 1, + anon_sym_GT_GT, + ACTIONS(1826), 1, + anon_sym_PERCENT, + ACTIONS(1828), 1, anon_sym_STAR_STAR, - ACTIONS(1832), 1, + ACTIONS(1836), 1, anon_sym_AMP_AMP, - ACTIONS(1834), 1, + ACTIONS(1838), 1, anon_sym_PIPE_PIPE, - ACTIONS(1836), 1, - anon_sym_GT_GT, ACTIONS(1840), 1, anon_sym_AMP, ACTIONS(1842), 1, anon_sym_CARET, ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1848), 1, - anon_sym_PERCENT, - ACTIONS(1856), 1, + ACTIONS(1846), 1, anon_sym_QMARK_QMARK, - ACTIONS(1858), 1, + ACTIONS(1848), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1838), 2, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1854), 2, + ACTIONS(1834), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1830), 3, + ACTIONS(1818), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1850), 3, + ACTIONS(1830), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33764] = 26, + [33684] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1445), 1, - anon_sym_of, - ACTIONS(1814), 1, - anon_sym_STAR_STAR, - ACTIONS(1832), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1834), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1836), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1840), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1844), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1848), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1856), 1, + ACTIONS(1393), 1, + anon_sym_STAR_STAR, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1858), 1, + ACTIONS(1403), 1, sym__ternary_qmark, + ACTIONS(1857), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1838), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1854), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1830), 3, + ACTIONS(1373), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1850), 3, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33855] = 26, + [33775] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1485), 1, + ACTIONS(1487), 1, anon_sym_of, - ACTIONS(1814), 1, + ACTIONS(1820), 1, + anon_sym_GT_GT, + ACTIONS(1826), 1, + anon_sym_PERCENT, + ACTIONS(1828), 1, anon_sym_STAR_STAR, - ACTIONS(1832), 1, + ACTIONS(1836), 1, anon_sym_AMP_AMP, - ACTIONS(1834), 1, + ACTIONS(1838), 1, anon_sym_PIPE_PIPE, - ACTIONS(1836), 1, - anon_sym_GT_GT, ACTIONS(1840), 1, anon_sym_AMP, ACTIONS(1842), 1, anon_sym_CARET, ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1848), 1, - anon_sym_PERCENT, - ACTIONS(1856), 1, + ACTIONS(1846), 1, anon_sym_QMARK_QMARK, - ACTIONS(1858), 1, + ACTIONS(1848), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1838), 2, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1854), 2, + ACTIONS(1834), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1830), 3, + ACTIONS(1818), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1850), 3, + ACTIONS(1830), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33946] = 26, + [33866] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1489), 1, + ACTIONS(1363), 1, anon_sym_of, - ACTIONS(1814), 1, + ACTIONS(1820), 1, + anon_sym_GT_GT, + ACTIONS(1826), 1, + anon_sym_PERCENT, + ACTIONS(1828), 1, anon_sym_STAR_STAR, - ACTIONS(1832), 1, + ACTIONS(1836), 1, anon_sym_AMP_AMP, - ACTIONS(1834), 1, + ACTIONS(1838), 1, anon_sym_PIPE_PIPE, - ACTIONS(1836), 1, - anon_sym_GT_GT, ACTIONS(1840), 1, anon_sym_AMP, ACTIONS(1842), 1, anon_sym_CARET, ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1848), 1, - anon_sym_PERCENT, - ACTIONS(1856), 1, + ACTIONS(1846), 1, anon_sym_QMARK_QMARK, - ACTIONS(1858), 1, + ACTIONS(1848), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1838), 2, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1854), 2, + ACTIONS(1834), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1830), 3, + ACTIONS(1818), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1850), 3, + ACTIONS(1830), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34037] = 16, + [33957] = 14, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1814), 1, - anon_sym_STAR_STAR, - ACTIONS(1836), 1, - anon_sym_GT_GT, - ACTIONS(1848), 1, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1826), 1, anon_sym_PERCENT, + ACTIONS(1828), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1838), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1493), 7, + ACTIONS(1517), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 11, + ACTIONS(1515), 13, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -64981,29 +64927,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34108] = 11, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1814), 1, - anon_sym_STAR_STAR, + [34024] = 6, + ACTIONS(1338), 1, + anon_sym_RBRACK, + ACTIONS(1341), 1, + anon_sym_EQ, + ACTIONS(1748), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1493), 12, + ACTIONS(1334), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -65016,1124 +64950,1066 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 14, + ACTIONS(1336), 21, sym__ternary_qmark, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34169] = 22, - ACTIONS(402), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1814), 1, - anon_sym_STAR_STAR, - ACTIONS(1836), 1, - anon_sym_GT_GT, - ACTIONS(1840), 1, - anon_sym_AMP, - ACTIONS(1842), 1, - anon_sym_CARET, - ACTIONS(1844), 1, - anon_sym_PIPE, - ACTIONS(1848), 1, - anon_sym_PERCENT, + [34075] = 6, + ACTIONS(1352), 1, + anon_sym_RBRACK, + ACTIONS(1355), 1, + anon_sym_EQ, + ACTIONS(1753), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1348), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1838), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1846), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1854), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1830), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1850), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1491), 5, + ACTIONS(1350), 21, sym__ternary_qmark, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [34252] = 23, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [34126] = 18, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1814), 1, - anon_sym_STAR_STAR, - ACTIONS(1832), 1, - anon_sym_AMP_AMP, - ACTIONS(1836), 1, + ACTIONS(1820), 1, anon_sym_GT_GT, - ACTIONS(1840), 1, - anon_sym_AMP, - ACTIONS(1842), 1, - anon_sym_CARET, - ACTIONS(1844), 1, - anon_sym_PIPE, - ACTIONS(1848), 1, + ACTIONS(1826), 1, anon_sym_PERCENT, + ACTIONS(1828), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1838), 2, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1854), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1830), 3, + ACTIONS(1818), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1850), 3, + ACTIONS(1830), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 4, + ACTIONS(1517), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1515), 8, sym__ternary_qmark, anon_sym_of, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, - [34337] = 14, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1308), 1, - anon_sym_LBRACK, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(1312), 1, - sym_optional_chain, - ACTIONS(1814), 1, - anon_sym_STAR_STAR, - ACTIONS(1848), 1, - anon_sym_PERCENT, + [34201] = 6, + ACTIONS(516), 1, + anon_sym_EQ, + ACTIONS(1343), 1, + anon_sym_RBRACK, + ACTIONS(1708), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(512), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1846), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1493), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 13, + ACTIONS(514), 21, sym__ternary_qmark, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34404] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [34252] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1814), 1, + ACTIONS(1531), 1, + anon_sym_of, + ACTIONS(1820), 1, + anon_sym_GT_GT, + ACTIONS(1826), 1, + anon_sym_PERCENT, + ACTIONS(1828), 1, anon_sym_STAR_STAR, ACTIONS(1836), 1, - anon_sym_GT_GT, + anon_sym_AMP_AMP, + ACTIONS(1838), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1840), 1, + anon_sym_AMP, + ACTIONS(1842), 1, + anon_sym_CARET, + ACTIONS(1844), 1, + anon_sym_PIPE, + ACTIONS(1846), 1, + anon_sym_QMARK_QMARK, ACTIONS(1848), 1, - anon_sym_PERCENT, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1493), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1828), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1838), 2, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1854), 2, + ACTIONS(1834), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1830), 3, + ACTIONS(1818), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1850), 3, + ACTIONS(1830), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 6, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [34483] = 21, + [34343] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1493), 1, - anon_sym_PIPE, - ACTIONS(1814), 1, - anon_sym_STAR_STAR, - ACTIONS(1836), 1, + ACTIONS(1773), 1, + anon_sym_AMP_AMP, + ACTIONS(1775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1840), 1, + ACTIONS(1781), 1, anon_sym_AMP, - ACTIONS(1848), 1, + ACTIONS(1783), 1, + anon_sym_CARET, + ACTIONS(1785), 1, + anon_sym_PIPE, + ACTIONS(1789), 1, anon_sym_PERCENT, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, + ACTIONS(1799), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1801), 1, + sym__ternary_qmark, + ACTIONS(1859), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1838), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1854), 2, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1830), 3, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1850), 3, + ACTIONS(1793), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 6, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [34564] = 22, + [34434] = 22, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1493), 1, + ACTIONS(1517), 1, anon_sym_PIPE, - ACTIONS(1814), 1, - anon_sym_STAR_STAR, - ACTIONS(1836), 1, + ACTIONS(1820), 1, anon_sym_GT_GT, + ACTIONS(1826), 1, + anon_sym_PERCENT, + ACTIONS(1828), 1, + anon_sym_STAR_STAR, ACTIONS(1840), 1, anon_sym_AMP, ACTIONS(1842), 1, anon_sym_CARET, - ACTIONS(1848), 1, - anon_sym_PERCENT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1838), 2, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1854), 2, + ACTIONS(1834), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1830), 3, + ACTIONS(1818), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1850), 3, + ACTIONS(1830), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 5, + ACTIONS(1515), 5, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [34647] = 13, + [34517] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1814), 1, - anon_sym_STAR_STAR, - ACTIONS(1848), 1, + ACTIONS(1773), 1, + anon_sym_AMP_AMP, + ACTIONS(1775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1777), 1, + anon_sym_GT_GT, + ACTIONS(1781), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_CARET, + ACTIONS(1785), 1, + anon_sym_PIPE, + ACTIONS(1789), 1, anon_sym_PERCENT, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, + ACTIONS(1799), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1801), 1, + sym__ternary_qmark, + ACTIONS(1861), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1493), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 13, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1771), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1793), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34712] = 18, + [34608] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1814), 1, + ACTIONS(1371), 1, + anon_sym_of, + ACTIONS(1820), 1, + anon_sym_GT_GT, + ACTIONS(1826), 1, + anon_sym_PERCENT, + ACTIONS(1828), 1, anon_sym_STAR_STAR, ACTIONS(1836), 1, - anon_sym_GT_GT, + anon_sym_AMP_AMP, + ACTIONS(1838), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1840), 1, + anon_sym_AMP, + ACTIONS(1842), 1, + anon_sym_CARET, + ACTIONS(1844), 1, + anon_sym_PIPE, + ACTIONS(1846), 1, + anon_sym_QMARK_QMARK, ACTIONS(1848), 1, - anon_sym_PERCENT, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1838), 2, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(509), 2, + ACTIONS(1832), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1834), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1830), 3, + ACTIONS(1818), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1850), 3, + ACTIONS(1830), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1493), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1491), 8, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [34787] = 24, + [34699] = 23, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1814), 1, + ACTIONS(1820), 1, + anon_sym_GT_GT, + ACTIONS(1826), 1, + anon_sym_PERCENT, + ACTIONS(1828), 1, anon_sym_STAR_STAR, - ACTIONS(1832), 1, - anon_sym_AMP_AMP, - ACTIONS(1834), 1, - anon_sym_PIPE_PIPE, ACTIONS(1836), 1, - anon_sym_GT_GT, + anon_sym_AMP_AMP, ACTIONS(1840), 1, anon_sym_AMP, ACTIONS(1842), 1, anon_sym_CARET, ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1848), 1, - anon_sym_PERCENT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1838), 2, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1854), 2, + ACTIONS(1834), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1491), 3, - sym__ternary_qmark, - anon_sym_of, - anon_sym_QMARK_QMARK, - ACTIONS(1830), 3, + ACTIONS(1818), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1850), 3, + ACTIONS(1830), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34874] = 26, + ACTIONS(1515), 4, + sym__ternary_qmark, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [34784] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1513), 1, + ACTIONS(1409), 1, anon_sym_of, - ACTIONS(1814), 1, + ACTIONS(1820), 1, + anon_sym_GT_GT, + ACTIONS(1826), 1, + anon_sym_PERCENT, + ACTIONS(1828), 1, anon_sym_STAR_STAR, - ACTIONS(1832), 1, + ACTIONS(1836), 1, anon_sym_AMP_AMP, - ACTIONS(1834), 1, + ACTIONS(1838), 1, anon_sym_PIPE_PIPE, - ACTIONS(1836), 1, - anon_sym_GT_GT, ACTIONS(1840), 1, anon_sym_AMP, ACTIONS(1842), 1, anon_sym_CARET, ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1848), 1, - anon_sym_PERCENT, - ACTIONS(1856), 1, + ACTIONS(1846), 1, anon_sym_QMARK_QMARK, - ACTIONS(1858), 1, + ACTIONS(1848), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1838), 2, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1854), 2, + ACTIONS(1834), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1830), 3, + ACTIONS(1818), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1850), 3, + ACTIONS(1830), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34965] = 26, + [34875] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1517), 1, + ACTIONS(1583), 1, anon_sym_of, - ACTIONS(1814), 1, + ACTIONS(1820), 1, + anon_sym_GT_GT, + ACTIONS(1826), 1, + anon_sym_PERCENT, + ACTIONS(1828), 1, anon_sym_STAR_STAR, - ACTIONS(1832), 1, + ACTIONS(1836), 1, anon_sym_AMP_AMP, - ACTIONS(1834), 1, + ACTIONS(1838), 1, anon_sym_PIPE_PIPE, - ACTIONS(1836), 1, - anon_sym_GT_GT, ACTIONS(1840), 1, anon_sym_AMP, ACTIONS(1842), 1, anon_sym_CARET, ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1848), 1, - anon_sym_PERCENT, - ACTIONS(1856), 1, + ACTIONS(1846), 1, anon_sym_QMARK_QMARK, - ACTIONS(1858), 1, + ACTIONS(1848), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1838), 2, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1854), 2, + ACTIONS(1834), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1830), 3, + ACTIONS(1818), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1850), 3, + ACTIONS(1830), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35056] = 26, + [34966] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1541), 1, + ACTIONS(1505), 1, anon_sym_of, - ACTIONS(1814), 1, + ACTIONS(1820), 1, + anon_sym_GT_GT, + ACTIONS(1826), 1, + anon_sym_PERCENT, + ACTIONS(1828), 1, anon_sym_STAR_STAR, - ACTIONS(1832), 1, + ACTIONS(1836), 1, anon_sym_AMP_AMP, - ACTIONS(1834), 1, + ACTIONS(1838), 1, anon_sym_PIPE_PIPE, - ACTIONS(1836), 1, - anon_sym_GT_GT, ACTIONS(1840), 1, anon_sym_AMP, ACTIONS(1842), 1, anon_sym_CARET, ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1848), 1, - anon_sym_PERCENT, - ACTIONS(1856), 1, + ACTIONS(1846), 1, anon_sym_QMARK_QMARK, - ACTIONS(1858), 1, + ACTIONS(1848), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1838), 2, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1854), 2, + ACTIONS(1834), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1830), 3, + ACTIONS(1818), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1850), 3, + ACTIONS(1830), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35147] = 26, + [35057] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1549), 1, - anon_sym_of, - ACTIONS(1814), 1, - anon_sym_STAR_STAR, - ACTIONS(1832), 1, + ACTIONS(1773), 1, anon_sym_AMP_AMP, - ACTIONS(1834), 1, + ACTIONS(1775), 1, anon_sym_PIPE_PIPE, - ACTIONS(1836), 1, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1840), 1, + ACTIONS(1781), 1, anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1783), 1, anon_sym_CARET, - ACTIONS(1844), 1, + ACTIONS(1785), 1, anon_sym_PIPE, - ACTIONS(1848), 1, + ACTIONS(1789), 1, anon_sym_PERCENT, - ACTIONS(1856), 1, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, + ACTIONS(1799), 1, anon_sym_QMARK_QMARK, - ACTIONS(1858), 1, + ACTIONS(1801), 1, sym__ternary_qmark, + ACTIONS(1863), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1838), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1854), 2, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1830), 3, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1850), 3, + ACTIONS(1793), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35238] = 26, + [35148] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1553), 1, - anon_sym_of, - ACTIONS(1814), 1, - anon_sym_STAR_STAR, - ACTIONS(1832), 1, + ACTIONS(1773), 1, anon_sym_AMP_AMP, - ACTIONS(1834), 1, + ACTIONS(1775), 1, anon_sym_PIPE_PIPE, - ACTIONS(1836), 1, + ACTIONS(1777), 1, anon_sym_GT_GT, - ACTIONS(1840), 1, + ACTIONS(1781), 1, anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1783), 1, anon_sym_CARET, - ACTIONS(1844), 1, + ACTIONS(1785), 1, anon_sym_PIPE, - ACTIONS(1848), 1, + ACTIONS(1789), 1, anon_sym_PERCENT, - ACTIONS(1856), 1, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, + ACTIONS(1799), 1, anon_sym_QMARK_QMARK, - ACTIONS(1858), 1, + ACTIONS(1801), 1, sym__ternary_qmark, + ACTIONS(1865), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1838), 2, + ACTIONS(1779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, + ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1854), 2, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1830), 3, + ACTIONS(1771), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1850), 3, + ACTIONS(1793), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35329] = 26, + [35239] = 11, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1357), 1, - anon_sym_of, - ACTIONS(1814), 1, + ACTIONS(1828), 1, anon_sym_STAR_STAR, - ACTIONS(1832), 1, - anon_sym_AMP_AMP, - ACTIONS(1834), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1836), 1, - anon_sym_GT_GT, - ACTIONS(1840), 1, - anon_sym_AMP, - ACTIONS(1842), 1, - anon_sym_CARET, - ACTIONS(1844), 1, - anon_sym_PIPE, - ACTIONS(1848), 1, - anon_sym_PERCENT, - ACTIONS(1856), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1858), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1517), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1838), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1846), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1854), 2, + ACTIONS(1515), 14, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, - sym_template_string, - sym_arguments, - ACTIONS(1830), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1850), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [35420] = 27, + [35300] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1645), 1, - anon_sym_of, - ACTIONS(1814), 1, - anon_sym_STAR_STAR, - ACTIONS(1832), 1, + ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1834), 1, + ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1836), 1, + ACTIONS(1379), 1, anon_sym_GT_GT, - ACTIONS(1840), 1, + ACTIONS(1383), 1, anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1385), 1, anon_sym_CARET, - ACTIONS(1844), 1, + ACTIONS(1387), 1, anon_sym_PIPE, - ACTIONS(1848), 1, + ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1856), 1, + ACTIONS(1393), 1, + anon_sym_STAR_STAR, + ACTIONS(1401), 1, anon_sym_QMARK_QMARK, - ACTIONS(1858), 1, + ACTIONS(1403), 1, sym__ternary_qmark, - ACTIONS(1862), 1, - anon_sym_in, + ACTIONS(1867), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1828), 2, + ACTIONS(1369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1830), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1838), 2, + ACTIONS(1381), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1846), 2, + ACTIONS(1389), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1852), 2, + ACTIONS(1397), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1854), 2, + ACTIONS(1399), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1850), 3, + ACTIONS(1373), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1395), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35513] = 26, + [35391] = 16, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1820), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1774), 1, + ACTIONS(1826), 1, anon_sym_PERCENT, - ACTIONS(1776), 1, + ACTIONS(1828), 1, anon_sym_STAR_STAR, - ACTIONS(1784), 1, - anon_sym_CARET, - ACTIONS(1791), 1, - anon_sym_AMP_AMP, - ACTIONS(1793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, - anon_sym_PIPE, - ACTIONS(1797), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1799), 1, - sym__ternary_qmark, - ACTIONS(1865), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1762), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1782), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1778), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [35604] = 4, - ACTIONS(1479), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1475), 14, - anon_sym_STAR, + ACTIONS(1517), 7, anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1477), 20, + ACTIONS(1515), 11, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [35650] = 6, - ACTIONS(1339), 1, + anon_sym_instanceof, + [35462] = 6, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(1289), 1, + anon_sym_RBRACK, + ACTIONS(1292), 1, anon_sym_EQ, - ACTIONS(1699), 1, - anon_sym_of, - ACTIONS(1705), 1, - anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1332), 11, + ACTIONS(1203), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -66144,7 +66020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1334), 21, + ACTIONS(1205), 21, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -66166,70 +66042,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [35700] = 25, + [35513] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1306), 1, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1310), 1, + ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1312), 1, + ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1766), 1, + ACTIONS(1513), 1, + anon_sym_of, + ACTIONS(1820), 1, anon_sym_GT_GT, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1774), 1, + ACTIONS(1826), 1, anon_sym_PERCENT, - ACTIONS(1776), 1, + ACTIONS(1828), 1, anon_sym_STAR_STAR, - ACTIONS(1784), 1, - anon_sym_CARET, - ACTIONS(1791), 1, + ACTIONS(1836), 1, anon_sym_AMP_AMP, - ACTIONS(1793), 1, + ACTIONS(1838), 1, anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, + ACTIONS(1840), 1, + anon_sym_AMP, + ACTIONS(1842), 1, + anon_sym_CARET, + ACTIONS(1844), 1, anon_sym_PIPE, - ACTIONS(1797), 1, + ACTIONS(1846), 1, anon_sym_QMARK_QMARK, - ACTIONS(1799), 1, + ACTIONS(1848), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1318), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1762), 2, + ACTIONS(1816), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1768), 2, + ACTIONS(1822), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1772), 2, + ACTIONS(1824), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + ACTIONS(1832), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1834), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(509), 2, + STATE(542), 2, sym_template_string, sym_arguments, - ACTIONS(1764), 3, + ACTIONS(1818), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1778), 3, + ACTIONS(1830), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35788] = 24, + [35604] = 24, ACTIONS(93), 1, anon_sym_AT, ACTIONS(101), 1, @@ -66240,175 +66118,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(1240), 1, + ACTIONS(1222), 1, anon_sym_LBRACE, - ACTIONS(1869), 1, - anon_sym_RBRACE, ACTIONS(1871), 1, - anon_sym_LBRACK, + anon_sym_RBRACE, ACTIONS(1873), 1, + anon_sym_LBRACK, + ACTIONS(1875), 1, anon_sym_async, - ACTIONS(1877), 1, + ACTIONS(1879), 1, anon_sym_static, - STATE(888), 1, + STATE(885), 1, aux_sym_export_statement_repeat1, - STATE(981), 1, + STATE(977), 1, sym_decorator, - STATE(1269), 1, + STATE(1347), 1, aux_sym_object_repeat1, - STATE(1357), 1, + STATE(1348), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 2, + ACTIONS(1877), 2, sym_number, sym_private_property_identifier, - ACTIONS(1879), 2, + ACTIONS(1881), 2, anon_sym_get, anon_sym_set, - ACTIONS(1867), 3, + ACTIONS(1869), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1264), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1265), 3, + STATE(1343), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1275), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1689), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [35874] = 24, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(101), 1, - anon_sym_STAR, - ACTIONS(103), 1, - anon_sym_COMMA, - ACTIONS(113), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(121), 1, - aux_sym_method_definition_token1, - ACTIONS(857), 1, - anon_sym_DQUOTE, - ACTIONS(859), 1, - anon_sym_SQUOTE, - ACTIONS(1240), 1, - anon_sym_LBRACE, - ACTIONS(1871), 1, - anon_sym_LBRACK, - ACTIONS(1883), 1, - anon_sym_RBRACE, - ACTIONS(1885), 1, - anon_sym_async, - ACTIONS(1887), 1, - anon_sym_static, - STATE(888), 1, - aux_sym_export_statement_repeat1, - STATE(981), 1, - sym_decorator, - STATE(1269), 1, - aux_sym_object_repeat1, - STATE(1357), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1875), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1889), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1881), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1264), 3, + STATE(1345), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1265), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1275), 3, + STATE(1346), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1689), 3, + STATE(1615), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [35960] = 6, - ACTIONS(1245), 1, - anon_sym_EQ, - ACTIONS(1277), 1, - anon_sym_in, - ACTIONS(1280), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1201), 11, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1203), 21, - sym__ternary_qmark, + [35690] = 25, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1443), 1, anon_sym_LPAREN, + ACTIONS(1445), 1, anon_sym_LBRACK, + ACTIONS(1447), 1, anon_sym_DOT, + ACTIONS(1449), 1, sym_optional_chain, + ACTIONS(1773), 1, anon_sym_AMP_AMP, + ACTIONS(1775), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1777), 1, + anon_sym_GT_GT, + ACTIONS(1781), 1, + anon_sym_AMP, + ACTIONS(1783), 1, anon_sym_CARET, + ACTIONS(1785), 1, + anon_sym_PIPE, + ACTIONS(1789), 1, anon_sym_PERCENT, + ACTIONS(1791), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1799), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1801), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1797), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(719), 2, + sym_template_string, + sym_arguments, + ACTIONS(1771), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1793), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [36010] = 6, - ACTIONS(1353), 1, + [35778] = 4, + ACTIONS(1300), 1, anon_sym_EQ, - ACTIONS(1701), 1, - anon_sym_of, - ACTIONS(1708), 1, - anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1346), 11, + ACTIONS(1203), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -66419,9 +66251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1348), 21, + ACTIONS(1205), 22, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -66441,17 +66274,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [36060] = 6, - ACTIONS(514), 1, + [35824] = 6, + ACTIONS(1227), 1, anon_sym_EQ, - ACTIONS(1703), 1, - anon_sym_of, - ACTIONS(1711), 1, + ACTIONS(1284), 1, anon_sym_in, + ACTIONS(1287), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(510), 11, + ACTIONS(1203), 11, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -66463,7 +66296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(512), 21, + ACTIONS(1205), 21, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -66485,7 +66318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [36110] = 24, + [35874] = 24, ACTIONS(93), 1, anon_sym_AT, ACTIONS(101), 1, @@ -66496,58 +66329,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(1240), 1, + ACTIONS(1222), 1, anon_sym_LBRACE, - ACTIONS(1871), 1, + ACTIONS(1873), 1, anon_sym_LBRACK, - ACTIONS(1893), 1, + ACTIONS(1885), 1, anon_sym_RBRACE, - ACTIONS(1895), 1, + ACTIONS(1887), 1, anon_sym_async, - ACTIONS(1897), 1, + ACTIONS(1889), 1, anon_sym_static, - STATE(888), 1, + STATE(885), 1, aux_sym_export_statement_repeat1, - STATE(981), 1, + STATE(977), 1, sym_decorator, - STATE(1269), 1, + STATE(1307), 1, aux_sym_object_repeat1, - STATE(1357), 1, + STATE(1348), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 2, + ACTIONS(1877), 2, sym_number, sym_private_property_identifier, - ACTIONS(1899), 2, + ACTIONS(1891), 2, anon_sym_get, anon_sym_set, - ACTIONS(1891), 3, + ACTIONS(1883), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1264), 3, + STATE(1306), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1265), 3, + STATE(1343), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1275), 3, + STATE(1346), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1689), 3, + STATE(1615), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [36196] = 24, + [35960] = 24, ACTIONS(93), 1, anon_sym_AT, ACTIONS(101), 1, @@ -66558,58 +66391,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(1240), 1, + ACTIONS(1222), 1, anon_sym_LBRACE, - ACTIONS(1871), 1, + ACTIONS(1873), 1, anon_sym_LBRACK, - ACTIONS(1903), 1, + ACTIONS(1895), 1, anon_sym_RBRACE, - ACTIONS(1905), 1, + ACTIONS(1897), 1, anon_sym_async, - ACTIONS(1907), 1, + ACTIONS(1899), 1, anon_sym_static, - STATE(888), 1, + STATE(885), 1, aux_sym_export_statement_repeat1, - STATE(981), 1, + STATE(977), 1, sym_decorator, - STATE(1269), 1, + STATE(1307), 1, aux_sym_object_repeat1, - STATE(1357), 1, + STATE(1348), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 2, + ACTIONS(1877), 2, sym_number, sym_private_property_identifier, - ACTIONS(1909), 2, + ACTIONS(1901), 2, anon_sym_get, anon_sym_set, - ACTIONS(1901), 3, + ACTIONS(1893), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1264), 3, + STATE(1306), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1265), 3, + STATE(1343), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1275), 3, + STATE(1346), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1689), 3, + STATE(1615), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [36282] = 24, + [36046] = 6, + ACTIONS(516), 1, + anon_sym_EQ, + ACTIONS(1705), 1, + anon_sym_in, + ACTIONS(1708), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(512), 11, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(514), 21, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [36096] = 25, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, + anon_sym_LPAREN, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_DOT, + ACTIONS(1316), 1, + sym_optional_chain, + ACTIONS(1773), 1, + anon_sym_AMP_AMP, + ACTIONS(1775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1777), 1, + anon_sym_GT_GT, + ACTIONS(1781), 1, + anon_sym_AMP, + ACTIONS(1783), 1, + anon_sym_CARET, + ACTIONS(1785), 1, + anon_sym_PIPE, + ACTIONS(1789), 1, + anon_sym_PERCENT, + ACTIONS(1791), 1, + anon_sym_STAR_STAR, + ACTIONS(1799), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1801), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1797), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(542), 2, + sym_template_string, + sym_arguments, + ACTIONS(1771), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1793), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36184] = 24, ACTIONS(93), 1, anon_sym_AT, ACTIONS(101), 1, @@ -66620,120 +66560,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(1240), 1, + ACTIONS(1222), 1, anon_sym_LBRACE, - ACTIONS(1871), 1, + ACTIONS(1873), 1, anon_sym_LBRACK, - ACTIONS(1913), 1, + ACTIONS(1905), 1, anon_sym_RBRACE, - ACTIONS(1915), 1, + ACTIONS(1907), 1, anon_sym_async, - ACTIONS(1917), 1, + ACTIONS(1909), 1, anon_sym_static, - STATE(888), 1, + STATE(885), 1, aux_sym_export_statement_repeat1, - STATE(981), 1, + STATE(977), 1, sym_decorator, - STATE(1269), 1, + STATE(1307), 1, aux_sym_object_repeat1, - STATE(1357), 1, + STATE(1348), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 2, + ACTIONS(1877), 2, sym_number, sym_private_property_identifier, - ACTIONS(1919), 2, + ACTIONS(1911), 2, anon_sym_get, anon_sym_set, - ACTIONS(1911), 3, + ACTIONS(1903), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1264), 3, + STATE(1306), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1265), 3, + STATE(1343), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1275), 3, + STATE(1346), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1689), 3, + STATE(1615), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [36368] = 25, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1391), 1, + [36270] = 6, + ACTIONS(1355), 1, + anon_sym_EQ, + ACTIONS(1750), 1, + anon_sym_in, + ACTIONS(1753), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1348), 11, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1350), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(1395), 1, anon_sym_DOT, - ACTIONS(1397), 1, sym_optional_chain, - ACTIONS(1766), 1, - anon_sym_GT_GT, - ACTIONS(1770), 1, - anon_sym_AMP, - ACTIONS(1774), 1, - anon_sym_PERCENT, - ACTIONS(1776), 1, - anon_sym_STAR_STAR, - ACTIONS(1784), 1, - anon_sym_CARET, - ACTIONS(1791), 1, anon_sym_AMP_AMP, - ACTIONS(1793), 1, anon_sym_PIPE_PIPE, - ACTIONS(1795), 1, - anon_sym_PIPE, - ACTIONS(1797), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1799), 1, - sym__ternary_qmark, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [36320] = 24, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(101), 1, + anon_sym_STAR, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(113), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(863), 1, + anon_sym_DQUOTE, + ACTIONS(865), 1, + anon_sym_SQUOTE, + ACTIONS(1222), 1, + anon_sym_LBRACE, + ACTIONS(1873), 1, + anon_sym_LBRACK, + ACTIONS(1915), 1, + anon_sym_RBRACE, + ACTIONS(1917), 1, + anon_sym_async, + ACTIONS(1919), 1, + anon_sym_static, + STATE(885), 1, + aux_sym_export_statement_repeat1, + STATE(977), 1, + sym_decorator, + STATE(1307), 1, + aux_sym_object_repeat1, + STATE(1348), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1320), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1762), 2, + ACTIONS(1877), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1921), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1913), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1306), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1343), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1346), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1615), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [36406] = 6, + ACTIONS(1341), 1, + anon_sym_EQ, + ACTIONS(1748), 1, + anon_sym_of, + ACTIONS(1755), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1334), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1768), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1772), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1780), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 2, + ACTIONS(1336), 21, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(670), 2, - sym_template_string, - sym_arguments, - ACTIONS(1764), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1778), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, [36456] = 24, ACTIONS(93), 1, anon_sym_AT, @@ -66745,54 +66772,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(1240), 1, + ACTIONS(1222), 1, anon_sym_LBRACE, - ACTIONS(1871), 1, + ACTIONS(1873), 1, anon_sym_LBRACK, - ACTIONS(1923), 1, - anon_sym_RBRACE, ACTIONS(1925), 1, - anon_sym_async, + anon_sym_RBRACE, ACTIONS(1927), 1, + anon_sym_async, + ACTIONS(1929), 1, anon_sym_static, - STATE(888), 1, + STATE(885), 1, aux_sym_export_statement_repeat1, - STATE(981), 1, + STATE(977), 1, sym_decorator, - STATE(1299), 1, + STATE(1307), 1, aux_sym_object_repeat1, - STATE(1357), 1, + STATE(1348), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 2, + ACTIONS(1877), 2, sym_number, sym_private_property_identifier, - ACTIONS(1929), 2, + ACTIONS(1931), 2, anon_sym_get, anon_sym_set, - ACTIONS(1921), 3, + ACTIONS(1923), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1265), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1272), 3, + STATE(1306), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1275), 3, + STATE(1343), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1346), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1689), 3, + STATE(1615), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -66807,66 +66834,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(1240), 1, + ACTIONS(1222), 1, anon_sym_LBRACE, - ACTIONS(1871), 1, + ACTIONS(1873), 1, anon_sym_LBRACK, - ACTIONS(1933), 1, - anon_sym_RBRACE, ACTIONS(1935), 1, - anon_sym_async, + anon_sym_RBRACE, ACTIONS(1937), 1, + anon_sym_async, + ACTIONS(1939), 1, anon_sym_static, - STATE(888), 1, + STATE(885), 1, aux_sym_export_statement_repeat1, - STATE(981), 1, + STATE(977), 1, sym_decorator, - STATE(1299), 1, + STATE(1347), 1, aux_sym_object_repeat1, - STATE(1357), 1, + STATE(1348), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 2, + ACTIONS(1877), 2, sym_number, sym_private_property_identifier, - ACTIONS(1939), 2, + ACTIONS(1941), 2, anon_sym_get, anon_sym_set, - ACTIONS(1931), 3, + ACTIONS(1933), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1265), 3, + STATE(1343), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1272), 3, + STATE(1345), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1275), 3, + STATE(1346), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1689), 3, + STATE(1615), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, [36628] = 4, - ACTIONS(1298), 1, - anon_sym_EQ, + ACTIONS(1493), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1201), 12, + ACTIONS(1489), 14, anon_sym_STAR, anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -66877,10 +66905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1203), 22, + anon_sym_instanceof, + ACTIONS(1491), 20, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -66896,7 +66924,6 @@ 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, @@ -66909,537 +66936,537 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(1240), 1, + ACTIONS(1222), 1, anon_sym_LBRACE, - ACTIONS(1871), 1, + ACTIONS(1873), 1, anon_sym_LBRACK, - ACTIONS(1946), 1, - anon_sym_async, ACTIONS(1948), 1, + anon_sym_async, + ACTIONS(1950), 1, anon_sym_static, - STATE(888), 1, + STATE(885), 1, aux_sym_export_statement_repeat1, - STATE(981), 1, + STATE(977), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 2, + ACTIONS(1877), 2, sym_number, sym_private_property_identifier, - ACTIONS(1943), 2, + ACTIONS(1945), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1950), 2, + ACTIONS(1952), 2, anon_sym_get, anon_sym_set, - ACTIONS(1941), 3, + ACTIONS(1943), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1275), 3, + STATE(1346), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1396), 3, + STATE(1568), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1402), 3, + STATE(1579), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1689), 3, + STATE(1615), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, [36752] = 23, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1954), 1, - anon_sym_STAR, ACTIONS(1956), 1, - anon_sym_RBRACE, + anon_sym_STAR, ACTIONS(1958), 1, - anon_sym_SEMI, + anon_sym_RBRACE, ACTIONS(1960), 1, - anon_sym_LBRACK, + anon_sym_SEMI, ACTIONS(1962), 1, - sym_glimmer_opening_tag, + anon_sym_LBRACK, ACTIONS(1964), 1, - anon_sym_DQUOTE, + sym_glimmer_opening_tag, ACTIONS(1966), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(1968), 1, + anon_sym_SQUOTE, + ACTIONS(1970), 1, anon_sym_async, - ACTIONS(1972), 1, - anon_sym_static, ACTIONS(1974), 1, + anon_sym_static, + ACTIONS(1976), 1, aux_sym_method_definition_token1, STATE(842), 1, aux_sym_class_body_repeat1, - STATE(886), 1, + STATE(889), 1, aux_sym_export_statement_repeat1, - STATE(936), 1, + STATE(932), 1, + sym_glimmer_template, + STATE(934), 1, sym_class_static_block, - STATE(938), 1, + STATE(935), 1, sym_method_definition, - STATE(942), 1, - sym_glimmer_template, - STATE(981), 1, + STATE(977), 1, sym_decorator, - STATE(1428), 1, + STATE(1497), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1970), 2, + ACTIONS(1972), 2, sym_number, sym_private_property_identifier, - ACTIONS(1976), 2, + ACTIONS(1978), 2, anon_sym_get, anon_sym_set, - ACTIONS(1952), 3, + ACTIONS(1954), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1115), 3, + STATE(1126), 3, sym_string, sym__property_name, sym_computed_property_name, [36829] = 23, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1954), 1, + ACTIONS(1956), 1, anon_sym_STAR, - ACTIONS(1960), 1, - anon_sym_LBRACK, ACTIONS(1962), 1, - sym_glimmer_opening_tag, + anon_sym_LBRACK, ACTIONS(1964), 1, - anon_sym_DQUOTE, + sym_glimmer_opening_tag, ACTIONS(1966), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(1968), 1, + anon_sym_SQUOTE, + ACTIONS(1970), 1, anon_sym_async, - ACTIONS(1972), 1, - anon_sym_static, ACTIONS(1974), 1, + anon_sym_static, + ACTIONS(1976), 1, aux_sym_method_definition_token1, - ACTIONS(1978), 1, - anon_sym_RBRACE, ACTIONS(1980), 1, + anon_sym_RBRACE, + ACTIONS(1982), 1, anon_sym_SEMI, - STATE(843), 1, + STATE(848), 1, aux_sym_class_body_repeat1, - STATE(886), 1, + STATE(889), 1, aux_sym_export_statement_repeat1, - STATE(936), 1, + STATE(932), 1, + sym_glimmer_template, + STATE(934), 1, sym_class_static_block, - STATE(938), 1, + STATE(935), 1, sym_method_definition, - STATE(942), 1, - sym_glimmer_template, - STATE(981), 1, + STATE(977), 1, sym_decorator, - STATE(1428), 1, + STATE(1497), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1970), 2, + ACTIONS(1972), 2, sym_number, sym_private_property_identifier, - ACTIONS(1976), 2, + ACTIONS(1978), 2, anon_sym_get, anon_sym_set, - ACTIONS(1952), 3, + ACTIONS(1954), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1115), 3, + STATE(1126), 3, sym_string, sym__property_name, sym_computed_property_name, [36906] = 23, - ACTIONS(1985), 1, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(1956), 1, anon_sym_STAR, - ACTIONS(1988), 1, - anon_sym_RBRACE, - ACTIONS(1990), 1, - anon_sym_SEMI, - ACTIONS(1993), 1, + ACTIONS(1962), 1, anon_sym_LBRACK, - ACTIONS(1996), 1, + ACTIONS(1964), 1, sym_glimmer_opening_tag, - ACTIONS(1999), 1, + ACTIONS(1966), 1, anon_sym_DQUOTE, - ACTIONS(2002), 1, + ACTIONS(1968), 1, anon_sym_SQUOTE, - ACTIONS(2005), 1, + ACTIONS(1970), 1, anon_sym_async, - ACTIONS(2011), 1, - anon_sym_AT, - ACTIONS(2014), 1, + ACTIONS(1974), 1, anon_sym_static, - ACTIONS(2017), 1, + ACTIONS(1976), 1, aux_sym_method_definition_token1, - STATE(843), 1, + ACTIONS(1982), 1, + anon_sym_SEMI, + ACTIONS(1984), 1, + anon_sym_RBRACE, + STATE(848), 1, aux_sym_class_body_repeat1, - STATE(886), 1, + STATE(889), 1, aux_sym_export_statement_repeat1, - STATE(936), 1, + STATE(932), 1, + sym_glimmer_template, + STATE(934), 1, sym_class_static_block, - STATE(938), 1, + STATE(935), 1, sym_method_definition, - STATE(942), 1, - sym_glimmer_template, - STATE(981), 1, + STATE(977), 1, sym_decorator, - STATE(1428), 1, + STATE(1497), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2008), 2, + ACTIONS(1972), 2, sym_number, sym_private_property_identifier, - ACTIONS(2020), 2, + ACTIONS(1978), 2, anon_sym_get, anon_sym_set, - ACTIONS(1982), 3, + ACTIONS(1954), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1115), 3, + STATE(1126), 3, sym_string, sym__property_name, sym_computed_property_name, [36983] = 23, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1954), 1, + ACTIONS(1956), 1, anon_sym_STAR, - ACTIONS(1960), 1, - anon_sym_LBRACK, ACTIONS(1962), 1, - sym_glimmer_opening_tag, + anon_sym_LBRACK, ACTIONS(1964), 1, - anon_sym_DQUOTE, + sym_glimmer_opening_tag, ACTIONS(1966), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(1968), 1, + anon_sym_SQUOTE, + ACTIONS(1970), 1, anon_sym_async, - ACTIONS(1972), 1, - anon_sym_static, ACTIONS(1974), 1, + anon_sym_static, + ACTIONS(1976), 1, aux_sym_method_definition_token1, - ACTIONS(2023), 1, - anon_sym_RBRACE, - ACTIONS(2025), 1, + ACTIONS(1982), 1, anon_sym_SEMI, - STATE(845), 1, + ACTIONS(1986), 1, + anon_sym_RBRACE, + STATE(848), 1, aux_sym_class_body_repeat1, - STATE(886), 1, + STATE(889), 1, aux_sym_export_statement_repeat1, - STATE(936), 1, + STATE(932), 1, + sym_glimmer_template, + STATE(934), 1, sym_class_static_block, - STATE(938), 1, + STATE(935), 1, sym_method_definition, - STATE(942), 1, - sym_glimmer_template, - STATE(981), 1, + STATE(977), 1, sym_decorator, - STATE(1428), 1, + STATE(1497), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1970), 2, + ACTIONS(1972), 2, sym_number, sym_private_property_identifier, - ACTIONS(1976), 2, + ACTIONS(1978), 2, anon_sym_get, anon_sym_set, - ACTIONS(1952), 3, + ACTIONS(1954), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1115), 3, + STATE(1126), 3, sym_string, sym__property_name, sym_computed_property_name, [37060] = 23, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1954), 1, + ACTIONS(1956), 1, anon_sym_STAR, - ACTIONS(1960), 1, - anon_sym_LBRACK, ACTIONS(1962), 1, - sym_glimmer_opening_tag, + anon_sym_LBRACK, ACTIONS(1964), 1, - anon_sym_DQUOTE, + sym_glimmer_opening_tag, ACTIONS(1966), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(1968), 1, + anon_sym_SQUOTE, + ACTIONS(1970), 1, anon_sym_async, - ACTIONS(1972), 1, - anon_sym_static, ACTIONS(1974), 1, + anon_sym_static, + ACTIONS(1976), 1, aux_sym_method_definition_token1, - ACTIONS(1980), 1, + ACTIONS(1982), 1, anon_sym_SEMI, - ACTIONS(2027), 1, + ACTIONS(1988), 1, anon_sym_RBRACE, - STATE(843), 1, + STATE(848), 1, aux_sym_class_body_repeat1, - STATE(886), 1, + STATE(889), 1, aux_sym_export_statement_repeat1, - STATE(936), 1, + STATE(932), 1, + sym_glimmer_template, + STATE(934), 1, sym_class_static_block, - STATE(938), 1, + STATE(935), 1, sym_method_definition, - STATE(942), 1, - sym_glimmer_template, - STATE(981), 1, + STATE(977), 1, sym_decorator, - STATE(1428), 1, + STATE(1497), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1970), 2, + ACTIONS(1972), 2, sym_number, sym_private_property_identifier, - ACTIONS(1976), 2, + ACTIONS(1978), 2, anon_sym_get, anon_sym_set, - ACTIONS(1952), 3, + ACTIONS(1954), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1115), 3, + STATE(1126), 3, sym_string, sym__property_name, sym_computed_property_name, [37137] = 23, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1954), 1, + ACTIONS(1956), 1, anon_sym_STAR, - ACTIONS(1960), 1, - anon_sym_LBRACK, ACTIONS(1962), 1, - sym_glimmer_opening_tag, + anon_sym_LBRACK, ACTIONS(1964), 1, - anon_sym_DQUOTE, + sym_glimmer_opening_tag, ACTIONS(1966), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(1968), 1, + anon_sym_SQUOTE, + ACTIONS(1970), 1, anon_sym_async, - ACTIONS(1972), 1, - anon_sym_static, ACTIONS(1974), 1, + anon_sym_static, + ACTIONS(1976), 1, aux_sym_method_definition_token1, - ACTIONS(2029), 1, + ACTIONS(1990), 1, anon_sym_RBRACE, - ACTIONS(2031), 1, + ACTIONS(1992), 1, anon_sym_SEMI, - STATE(848), 1, + STATE(844), 1, aux_sym_class_body_repeat1, - STATE(886), 1, + STATE(889), 1, aux_sym_export_statement_repeat1, - STATE(936), 1, + STATE(932), 1, + sym_glimmer_template, + STATE(934), 1, sym_class_static_block, - STATE(938), 1, + STATE(935), 1, sym_method_definition, - STATE(942), 1, - sym_glimmer_template, - STATE(981), 1, + STATE(977), 1, sym_decorator, - STATE(1428), 1, + STATE(1497), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1970), 2, + ACTIONS(1972), 2, sym_number, sym_private_property_identifier, - ACTIONS(1976), 2, + ACTIONS(1978), 2, anon_sym_get, anon_sym_set, - ACTIONS(1952), 3, + ACTIONS(1954), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1115), 3, + STATE(1126), 3, sym_string, sym__property_name, sym_computed_property_name, [37214] = 23, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1954), 1, + ACTIONS(1956), 1, anon_sym_STAR, - ACTIONS(1960), 1, - anon_sym_LBRACK, ACTIONS(1962), 1, - sym_glimmer_opening_tag, + anon_sym_LBRACK, ACTIONS(1964), 1, - anon_sym_DQUOTE, + sym_glimmer_opening_tag, ACTIONS(1966), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(1968), 1, + anon_sym_SQUOTE, + ACTIONS(1970), 1, anon_sym_async, - ACTIONS(1972), 1, - anon_sym_static, ACTIONS(1974), 1, + anon_sym_static, + ACTIONS(1976), 1, aux_sym_method_definition_token1, - ACTIONS(2033), 1, + ACTIONS(1994), 1, anon_sym_RBRACE, - ACTIONS(2035), 1, + ACTIONS(1996), 1, anon_sym_SEMI, - STATE(849), 1, + STATE(843), 1, aux_sym_class_body_repeat1, - STATE(886), 1, + STATE(889), 1, aux_sym_export_statement_repeat1, - STATE(936), 1, + STATE(932), 1, + sym_glimmer_template, + STATE(934), 1, sym_class_static_block, - STATE(938), 1, + STATE(935), 1, sym_method_definition, - STATE(942), 1, - sym_glimmer_template, - STATE(981), 1, + STATE(977), 1, sym_decorator, - STATE(1428), 1, + STATE(1497), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1970), 2, + ACTIONS(1972), 2, sym_number, sym_private_property_identifier, - ACTIONS(1976), 2, + ACTIONS(1978), 2, anon_sym_get, anon_sym_set, - ACTIONS(1952), 3, + ACTIONS(1954), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1115), 3, + STATE(1126), 3, sym_string, sym__property_name, sym_computed_property_name, [37291] = 23, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(1954), 1, + ACTIONS(2001), 1, anon_sym_STAR, - ACTIONS(1960), 1, + ACTIONS(2004), 1, + anon_sym_RBRACE, + ACTIONS(2006), 1, + anon_sym_SEMI, + ACTIONS(2009), 1, anon_sym_LBRACK, - ACTIONS(1962), 1, + ACTIONS(2012), 1, sym_glimmer_opening_tag, - ACTIONS(1964), 1, + ACTIONS(2015), 1, anon_sym_DQUOTE, - ACTIONS(1966), 1, + ACTIONS(2018), 1, anon_sym_SQUOTE, - ACTIONS(1968), 1, + ACTIONS(2021), 1, anon_sym_async, - ACTIONS(1972), 1, + ACTIONS(2027), 1, + anon_sym_AT, + ACTIONS(2030), 1, anon_sym_static, - ACTIONS(1974), 1, + ACTIONS(2033), 1, aux_sym_method_definition_token1, - ACTIONS(1980), 1, - anon_sym_SEMI, - ACTIONS(2037), 1, - anon_sym_RBRACE, - STATE(843), 1, + STATE(848), 1, aux_sym_class_body_repeat1, - STATE(886), 1, + STATE(889), 1, aux_sym_export_statement_repeat1, - STATE(936), 1, + STATE(932), 1, + sym_glimmer_template, + STATE(934), 1, sym_class_static_block, - STATE(938), 1, + STATE(935), 1, sym_method_definition, - STATE(942), 1, - sym_glimmer_template, - STATE(981), 1, + STATE(977), 1, sym_decorator, - STATE(1428), 1, + STATE(1497), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1970), 2, + ACTIONS(2024), 2, sym_number, sym_private_property_identifier, - ACTIONS(1976), 2, + ACTIONS(2036), 2, anon_sym_get, anon_sym_set, - ACTIONS(1952), 3, + ACTIONS(1998), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1115), 3, + STATE(1126), 3, sym_string, sym__property_name, sym_computed_property_name, [37368] = 23, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1954), 1, + ACTIONS(1956), 1, anon_sym_STAR, - ACTIONS(1960), 1, - anon_sym_LBRACK, ACTIONS(1962), 1, - sym_glimmer_opening_tag, + anon_sym_LBRACK, ACTIONS(1964), 1, - anon_sym_DQUOTE, + sym_glimmer_opening_tag, ACTIONS(1966), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(1968), 1, + anon_sym_SQUOTE, + ACTIONS(1970), 1, anon_sym_async, - ACTIONS(1972), 1, - anon_sym_static, ACTIONS(1974), 1, + anon_sym_static, + ACTIONS(1976), 1, aux_sym_method_definition_token1, - ACTIONS(1980), 1, - anon_sym_SEMI, ACTIONS(2039), 1, anon_sym_RBRACE, - STATE(843), 1, + ACTIONS(2041), 1, + anon_sym_SEMI, + STATE(845), 1, aux_sym_class_body_repeat1, - STATE(886), 1, + STATE(889), 1, aux_sym_export_statement_repeat1, - STATE(936), 1, + STATE(932), 1, + sym_glimmer_template, + STATE(934), 1, sym_class_static_block, - STATE(938), 1, + STATE(935), 1, sym_method_definition, - STATE(942), 1, - sym_glimmer_template, - STATE(981), 1, + STATE(977), 1, sym_decorator, - STATE(1428), 1, + STATE(1497), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1970), 2, + ACTIONS(1972), 2, sym_number, sym_private_property_identifier, - ACTIONS(1976), 2, + ACTIONS(1978), 2, anon_sym_get, anon_sym_set, - ACTIONS(1952), 3, + ACTIONS(1954), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1115), 3, + STATE(1126), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -67450,132 +67477,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(709), 1, + ACTIONS(713), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2043), 1, - anon_sym_COMMA, ACTIONS(2045), 1, - anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(2047), 1, - anon_sym_LBRACK, + anon_sym_RBRACE, ACTIONS(2049), 1, - anon_sym_async, - ACTIONS(2053), 1, - anon_sym_static, - STATE(888), 1, - aux_sym_export_statement_repeat1, - STATE(981), 1, - sym_decorator, - STATE(1286), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2051), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2055), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2041), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1285), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1314), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [37515] = 18, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(101), 1, - anon_sym_STAR, - ACTIONS(121), 1, - aux_sym_method_definition_token1, - ACTIONS(709), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(857), 1, - anon_sym_DQUOTE, - ACTIONS(859), 1, - anon_sym_SQUOTE, - ACTIONS(2047), 1, anon_sym_LBRACK, - ACTIONS(2061), 1, + ACTIONS(2051), 1, anon_sym_async, - ACTIONS(2063), 1, + ACTIONS(2055), 1, anon_sym_static, - STATE(888), 1, + STATE(885), 1, aux_sym_export_statement_repeat1, - STATE(981), 1, + STATE(977), 1, sym_decorator, + STATE(1352), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2051), 2, + ACTIONS(2053), 2, sym_number, sym_private_property_identifier, - ACTIONS(2059), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2065), 2, + ACTIONS(2057), 2, anon_sym_get, anon_sym_set, - ACTIONS(2057), 3, + ACTIONS(2043), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1314), 3, + STATE(1302), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1402), 3, + STATE(1350), 3, sym_spread_element, sym_method_definition, sym_pair, - [37580] = 14, - ACTIONS(680), 1, + [37515] = 14, + ACTIONS(682), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(1240), 1, + ACTIONS(1222), 1, anon_sym_LBRACE, - ACTIONS(1871), 1, + ACTIONS(1873), 1, anon_sym_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2061), 1, anon_sym_COMMA, - ACTIONS(2071), 1, + ACTIONS(2063), 1, anon_sym_RBRACE, - STATE(1270), 1, + STATE(1310), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2073), 2, + ACTIONS(2065), 2, sym_number, sym_private_property_identifier, - STATE(1263), 3, + STATE(1305), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1614), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1689), 3, + STATE(1615), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(2067), 7, + STATE(1628), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2059), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -67583,42 +67563,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [37637] = 14, - ACTIONS(680), 1, + [37572] = 14, + ACTIONS(682), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(1240), 1, + ACTIONS(1222), 1, anon_sym_LBRACE, - ACTIONS(1871), 1, + ACTIONS(1873), 1, anon_sym_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2061), 1, anon_sym_COMMA, - ACTIONS(2077), 1, + ACTIONS(2069), 1, anon_sym_RBRACE, - STATE(1357), 1, + STATE(1348), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2073), 2, + ACTIONS(2065), 2, sym_number, sym_private_property_identifier, - STATE(1265), 3, + STATE(1343), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1614), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1689), 3, + STATE(1615), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(2075), 7, + STATE(1628), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2067), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -67626,39 +67606,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, + [37629] = 18, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(101), 1, + anon_sym_STAR, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(713), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(863), 1, + anon_sym_DQUOTE, + ACTIONS(865), 1, + anon_sym_SQUOTE, + ACTIONS(2049), 1, + anon_sym_LBRACK, + ACTIONS(2075), 1, + anon_sym_async, + ACTIONS(2077), 1, + anon_sym_static, + STATE(885), 1, + aux_sym_export_statement_repeat1, + STATE(977), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2053), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2073), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2079), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2071), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1302), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1579), 3, + sym_spread_element, + sym_method_definition, + sym_pair, [37694] = 12, - ACTIONS(680), 1, + ACTIONS(682), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(1240), 1, + ACTIONS(1222), 1, anon_sym_LBRACE, - ACTIONS(1871), 1, + ACTIONS(1873), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2073), 2, + ACTIONS(2065), 2, sym_number, sym_private_property_identifier, - ACTIONS(2081), 2, + ACTIONS(2083), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1396), 3, + STATE(1568), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1614), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1689), 3, + STATE(1615), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(2079), 7, + STATE(1628), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2081), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -67669,39 +67696,39 @@ static const uint16_t ts_small_parse_table[] = { [37746] = 15, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(857), 1, + ACTIONS(811), 1, + anon_sym_RBRACE, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_STAR, ACTIONS(2085), 1, - anon_sym_RBRACE, + anon_sym_STAR, ACTIONS(2089), 1, anon_sym_EQ, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1340), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, + ACTIONS(877), 2, anon_sym_get, anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 5, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, anon_sym_async, @@ -67710,496 +67737,496 @@ static const uint16_t ts_small_parse_table[] = { [37802] = 16, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(837), 1, - anon_sym_RBRACE, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(873), 1, + ACTIONS(875), 1, anon_sym_async, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2085), 1, anon_sym_STAR, ACTIONS(2089), 1, anon_sym_EQ, - STATE(1305), 1, - aux_sym_object_repeat1, - STATE(1307), 1, + ACTIONS(2091), 1, + anon_sym_RBRACE, + STATE(1300), 1, aux_sym_object_pattern_repeat1, + STATE(1340), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, + ACTIONS(877), 2, anon_sym_get, anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 4, + ACTIONS(873), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [37860] = 15, + [37860] = 16, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(875), 1, + anon_sym_async, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2085), 1, anon_sym_STAR, ACTIONS(2089), 1, anon_sym_EQ, - ACTIONS(2091), 1, + ACTIONS(2093), 1, anon_sym_RBRACE, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1340), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, + ACTIONS(877), 2, anon_sym_get, anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 5, + ACTIONS(873), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [37916] = 16, + [37918] = 15, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(873), 1, - anon_sym_async, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2085), 1, anon_sym_STAR, ACTIONS(2089), 1, anon_sym_EQ, - ACTIONS(2091), 1, + ACTIONS(2093), 1, anon_sym_RBRACE, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1340), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, + ACTIONS(877), 2, anon_sym_get, anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 4, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [37974] = 15, + [37974] = 16, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(857), 1, + ACTIONS(811), 1, + anon_sym_RBRACE, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(875), 1, + anon_sym_async, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2085), 1, anon_sym_STAR, ACTIONS(2089), 1, anon_sym_EQ, - ACTIONS(2093), 1, - anon_sym_RBRACE, - STATE(1305), 1, - aux_sym_object_repeat1, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, + STATE(1340), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, + ACTIONS(877), 2, anon_sym_get, anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 5, + ACTIONS(873), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [38030] = 16, + [38032] = 15, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(857), 1, + ACTIONS(837), 1, + anon_sym_RBRACE, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(873), 1, - anon_sym_async, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2085), 1, anon_sym_STAR, ACTIONS(2089), 1, anon_sym_EQ, - ACTIONS(2093), 1, - anon_sym_RBRACE, - STATE(1305), 1, - aux_sym_object_repeat1, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, + STATE(1301), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, + ACTIONS(877), 2, anon_sym_get, anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 4, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [38088] = 15, + [38088] = 16, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(857), 1, + ACTIONS(839), 1, + anon_sym_RBRACE, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(875), 1, + anon_sym_async, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2085), 1, anon_sym_STAR, ACTIONS(2089), 1, anon_sym_EQ, - ACTIONS(2095), 1, - anon_sym_RBRACE, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1340), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, + ACTIONS(877), 2, anon_sym_get, anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 5, + ACTIONS(873), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [38144] = 16, + [38146] = 16, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(857), 1, + ACTIONS(837), 1, + anon_sym_RBRACE, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(873), 1, + ACTIONS(875), 1, anon_sym_async, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2085), 1, anon_sym_STAR, ACTIONS(2089), 1, anon_sym_EQ, - ACTIONS(2095), 1, - anon_sym_RBRACE, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1301), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, + ACTIONS(877), 2, anon_sym_get, anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 4, + ACTIONS(873), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [38202] = 16, + [38204] = 15, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(873), 1, - anon_sym_async, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_STAR, ACTIONS(2085), 1, - anon_sym_RBRACE, + anon_sym_STAR, ACTIONS(2089), 1, anon_sym_EQ, - STATE(1307), 1, + ACTIONS(2095), 1, + anon_sym_RBRACE, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1301), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, + ACTIONS(877), 2, anon_sym_get, anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 4, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [38260] = 15, + [38260] = 16, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(837), 1, - anon_sym_RBRACE, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(875), 1, + anon_sym_async, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2085), 1, anon_sym_STAR, ACTIONS(2089), 1, anon_sym_EQ, - STATE(1305), 1, - aux_sym_object_repeat1, - STATE(1307), 1, + ACTIONS(2097), 1, + anon_sym_RBRACE, + STATE(1300), 1, aux_sym_object_pattern_repeat1, + STATE(1340), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, + ACTIONS(877), 2, anon_sym_get, anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 5, + ACTIONS(873), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [38316] = 15, + [38318] = 15, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(835), 1, + ACTIONS(839), 1, anon_sym_RBRACE, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2085), 1, anon_sym_STAR, ACTIONS(2089), 1, anon_sym_EQ, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1340), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, + ACTIONS(877), 2, anon_sym_get, anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 5, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [38372] = 16, + [38374] = 15, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(835), 1, - anon_sym_RBRACE, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(873), 1, - anon_sym_async, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2085), 1, anon_sym_STAR, ACTIONS(2089), 1, anon_sym_EQ, - STATE(1307), 1, + ACTIONS(2097), 1, + anon_sym_RBRACE, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1340), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, + ACTIONS(877), 2, anon_sym_get, anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 4, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, [38430] = 15, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_RBRACE, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2085), 1, anon_sym_STAR, ACTIONS(2089), 1, anon_sym_EQ, - STATE(1307), 1, + ACTIONS(2091), 1, + anon_sym_RBRACE, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1340), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, + ACTIONS(877), 2, anon_sym_get, anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 5, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, anon_sym_async, @@ -68208,41 +68235,41 @@ static const uint16_t ts_small_parse_table[] = { [38486] = 16, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_RBRACE, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(873), 1, + ACTIONS(875), 1, anon_sym_async, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2085), 1, anon_sym_STAR, ACTIONS(2089), 1, anon_sym_EQ, - STATE(1307), 1, + ACTIONS(2095), 1, + anon_sym_RBRACE, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1301), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, + ACTIONS(877), 2, anon_sym_get, anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 4, + ACTIONS(873), 4, anon_sym_export, anon_sym_let, sym_identifier, @@ -68250,34 +68277,34 @@ static const uint16_t ts_small_parse_table[] = { [38544] = 13, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(837), 1, anon_sym_RBRACE, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2089), 1, anon_sym_EQ, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1301), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -68285,76 +68312,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [38595] = 14, - ACTIONS(1960), 1, - anon_sym_LBRACK, - ACTIONS(1964), 1, - anon_sym_DQUOTE, - ACTIONS(1966), 1, - anon_sym_SQUOTE, - ACTIONS(2097), 1, - anon_sym_STAR, - ACTIONS(2099), 1, - anon_sym_LBRACE, - ACTIONS(2101), 1, - anon_sym_async, - ACTIONS(2107), 1, - sym__automatic_semicolon, - STATE(935), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2103), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2105), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2087), 3, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - STATE(1099), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1952), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [38648] = 13, + [38595] = 13, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(837), 1, - anon_sym_RBRACE, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2089), 1, anon_sym_EQ, - STATE(1305), 1, - aux_sym_object_repeat1, - STATE(1307), 1, + ACTIONS(2097), 1, + anon_sym_RBRACE, + STATE(1300), 1, aux_sym_object_pattern_repeat1, + STATE(1340), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -68362,37 +68350,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [38699] = 13, + [38646] = 13, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2089), 1, anon_sym_EQ, - ACTIONS(2091), 1, + ACTIONS(2093), 1, anon_sym_RBRACE, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1340), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -68400,37 +68388,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [38750] = 13, + [38697] = 13, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(857), 1, + ACTIONS(839), 1, + anon_sym_RBRACE, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2089), 1, anon_sym_EQ, - ACTIONS(2095), 1, - anon_sym_RBRACE, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1340), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -68438,37 +68426,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [38801] = 13, + [38748] = 13, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(835), 1, + ACTIONS(811), 1, anon_sym_RBRACE, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2089), 1, anon_sym_EQ, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1340), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -68476,37 +68464,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [38852] = 13, + [38799] = 13, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2089), 1, anon_sym_EQ, - ACTIONS(2093), 1, + ACTIONS(2091), 1, anon_sym_RBRACE, - STATE(1305), 1, - aux_sym_object_repeat1, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, + STATE(1340), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -68514,37 +68502,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [38903] = 13, + [38850] = 13, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(857), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, - anon_sym_RBRACE, ACTIONS(2089), 1, anon_sym_EQ, - STATE(1307), 1, + ACTIONS(2095), 1, + anon_sym_RBRACE, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1301), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -68552,496 +68540,536 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [38954] = 18, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(857), 1, + [38901] = 14, + ACTIONS(1962), 1, + anon_sym_LBRACK, + ACTIONS(1966), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(1968), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, - anon_sym_LBRACK, - ACTIONS(2110), 1, - anon_sym_export, - ACTIONS(2112), 1, + ACTIONS(2099), 1, anon_sym_STAR, - ACTIONS(2114), 1, - anon_sym_class, - ACTIONS(2116), 1, + ACTIONS(2101), 1, + anon_sym_LBRACE, + ACTIONS(2103), 1, anon_sym_async, - ACTIONS(2120), 1, - anon_sym_static, - ACTIONS(2122), 1, - aux_sym_method_definition_token1, - ACTIONS(2124), 1, - anon_sym_get, - ACTIONS(2126), 1, - anon_sym_set, - STATE(939), 1, - aux_sym_export_statement_repeat1, - STATE(981), 1, - sym_decorator, + ACTIONS(2109), 1, + sym__automatic_semicolon, + STATE(940), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(871), 2, - anon_sym_let, - sym_identifier, - ACTIONS(2118), 2, + ACTIONS(2105), 2, sym_number, sym_private_property_identifier, - STATE(1579), 3, + ACTIONS(2107), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2087), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + STATE(1097), 3, sym_string, sym__property_name, sym_computed_property_name, - [39014] = 12, - ACTIONS(857), 1, + ACTIONS(1954), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [38954] = 13, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(875), 1, + anon_sym_async, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2085), 1, anon_sym_STAR, ACTIONS(2089), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, + ACTIONS(877), 2, anon_sym_get, anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2128), 2, + ACTIONS(2112), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 5, + ACTIONS(873), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [39062] = 13, - ACTIONS(857), 1, + [39004] = 14, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(873), 1, + ACTIONS(875), 1, anon_sym_async, - ACTIONS(2047), 1, + ACTIONS(2045), 1, + anon_sym_COMMA, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2085), 1, anon_sym_STAR, - ACTIONS(2089), 1, - anon_sym_EQ, + ACTIONS(2115), 1, + anon_sym_RBRACE, + STATE(1271), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, + ACTIONS(877), 2, anon_sym_get, anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2128), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 4, + ACTIONS(873), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [39112] = 13, - ACTIONS(857), 1, + [39056] = 12, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2043), 1, - anon_sym_COMMA, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2085), 1, anon_sym_STAR, - ACTIONS(2131), 1, - anon_sym_RBRACE, - STATE(1290), 1, - aux_sym_object_repeat1, + ACTIONS(2089), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, + ACTIONS(877), 2, anon_sym_get, anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + ACTIONS(2112), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 5, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [39162] = 14, - ACTIONS(857), 1, + [39104] = 13, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(873), 1, - anon_sym_async, - ACTIONS(2043), 1, + ACTIONS(2045), 1, anon_sym_COMMA, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2085), 1, anon_sym_STAR, - ACTIONS(2131), 1, + ACTIONS(2115), 1, anon_sym_RBRACE, - STATE(1290), 1, + STATE(1271), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, + ACTIONS(877), 2, anon_sym_get, anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 4, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [39214] = 11, - ACTIONS(857), 1, + [39154] = 18, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, + ACTIONS(2117), 1, + anon_sym_export, + ACTIONS(2119), 1, anon_sym_STAR, + ACTIONS(2121), 1, + anon_sym_class, + ACTIONS(2123), 1, + anon_sym_async, + ACTIONS(2127), 1, + anon_sym_static, + ACTIONS(2129), 1, + aux_sym_method_definition_token1, + ACTIONS(2131), 1, + anon_sym_get, + ACTIONS(2133), 1, + anon_sym_set, + STATE(936), 1, + aux_sym_export_statement_repeat1, + STATE(977), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(873), 2, + anon_sym_let, + sym_identifier, + ACTIONS(2125), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2087), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2133), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1389), 3, + STATE(1571), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [39259] = 10, - ACTIONS(857), 1, + [39214] = 10, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2097), 1, - anon_sym_STAR, + ACTIONS(2089), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2135), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(2137), 2, - anon_sym_get, - anon_sym_set, - STATE(1454), 3, + ACTIONS(2087), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2112), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2087), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(871), 5, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [39302] = 12, - ACTIONS(857), 1, + anon_sym_get, + anon_sym_set, + [39257] = 11, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(873), 1, - anon_sym_async, - ACTIONS(2047), 1, + ACTIONS(2045), 1, + anon_sym_COMMA, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_STAR, + ACTIONS(2115), 1, + anon_sym_RBRACE, + STATE(1271), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, - anon_sym_get, - anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2133), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 4, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [39349] = 11, - ACTIONS(857), 1, + anon_sym_get, + anon_sym_set, + [39302] = 11, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2139), 1, + ACTIONS(2085), 1, anon_sym_STAR, - ACTIONS(2143), 1, - anon_sym_get, - ACTIONS(2145), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2141), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - STATE(1501), 3, + ACTIONS(877), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2087), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2135), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2087), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(871), 5, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [39394] = 16, + [39347] = 16, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1960), 1, - anon_sym_LBRACK, - ACTIONS(1964), 1, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(1966), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2147), 1, + ACTIONS(2049), 1, + anon_sym_LBRACK, + ACTIONS(2119), 1, anon_sym_STAR, - ACTIONS(2149), 1, + ACTIONS(2123), 1, anon_sym_async, - ACTIONS(2153), 1, + ACTIONS(2127), 1, anon_sym_static, - ACTIONS(2155), 1, + ACTIONS(2129), 1, aux_sym_method_definition_token1, - ACTIONS(2157), 1, + ACTIONS(2131), 1, anon_sym_get, - ACTIONS(2159), 1, + ACTIONS(2133), 1, anon_sym_set, - STATE(939), 1, + STATE(936), 1, aux_sym_export_statement_repeat1, - STATE(981), 1, + STATE(977), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2151), 2, + ACTIONS(2125), 2, sym_number, sym_private_property_identifier, - ACTIONS(1952), 3, + ACTIONS(873), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1100), 3, + STATE(1571), 3, sym_string, sym__property_name, sym_computed_property_name, - [39449] = 10, - ACTIONS(857), 1, + [39402] = 12, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(875), 1, + anon_sym_async, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, - anon_sym_EQ, + ACTIONS(2085), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, + ACTIONS(877), 2, + anon_sym_get, + anon_sym_set, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2128), 2, + ACTIONS(2135), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1389), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [39492] = 16, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(857), 1, + [39449] = 11, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2112), 1, + ACTIONS(2137), 1, anon_sym_STAR, - ACTIONS(2116), 1, - anon_sym_async, - ACTIONS(2120), 1, - anon_sym_static, - ACTIONS(2122), 1, - aux_sym_method_definition_token1, - ACTIONS(2124), 1, + ACTIONS(2141), 1, anon_sym_get, - ACTIONS(2126), 1, + ACTIONS(2143), 1, anon_sym_set, - STATE(939), 1, - aux_sym_export_statement_repeat1, - STATE(981), 1, - sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2118), 2, + ACTIONS(2139), 2, sym_number, sym_private_property_identifier, - ACTIONS(871), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1579), 3, + STATE(1549), 3, sym_string, sym__property_name, sym_computed_property_name, - [39547] = 11, - ACTIONS(857), 1, + ACTIONS(2087), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(873), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [39494] = 10, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2043), 1, - anon_sym_COMMA, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2131), 1, - anon_sym_RBRACE, - STATE(1290), 1, - aux_sym_object_repeat1, + ACTIONS(2145), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(2147), 2, sym_number, sym_private_property_identifier, - ACTIONS(2087), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1389), 3, + ACTIONS(2149), 2, + anon_sym_get, + anon_sym_set, + STATE(1529), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(2087), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, + [39537] = 16, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(1962), 1, + anon_sym_LBRACK, + ACTIONS(1966), 1, + anon_sym_DQUOTE, + ACTIONS(1968), 1, + anon_sym_SQUOTE, + ACTIONS(2151), 1, + anon_sym_STAR, + ACTIONS(2153), 1, + anon_sym_async, + ACTIONS(2157), 1, + anon_sym_static, + ACTIONS(2159), 1, + aux_sym_method_definition_token1, + ACTIONS(2161), 1, anon_sym_get, + ACTIONS(2163), 1, anon_sym_set, - [39592] = 10, - ACTIONS(857), 1, + STATE(936), 1, + aux_sym_export_statement_repeat1, + STATE(977), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2155), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1954), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1093), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [39592] = 11, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2161), 1, + ACTIONS(2165), 1, anon_sym_STAR, + ACTIONS(2169), 1, + anon_sym_get, + ACTIONS(2171), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2163), 2, + ACTIONS(2167), 2, sym_number, sym_private_property_identifier, - ACTIONS(2165), 2, - anon_sym_get, - anon_sym_set, - STATE(1482), 3, + STATE(1531), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -69050,32 +69078,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(871), 5, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [39635] = 11, - ACTIONS(857), 1, + [39637] = 10, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2167), 1, + ACTIONS(2099), 1, anon_sym_STAR, - ACTIONS(2171), 1, - anon_sym_get, - ACTIONS(2173), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2169), 2, + ACTIONS(2173), 2, sym_number, sym_private_property_identifier, - STATE(1484), 3, + ACTIONS(2175), 2, + anon_sym_get, + anon_sym_set, + STATE(1499), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -69084,38 +69111,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(871), 5, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, [39680] = 12, - ACTIONS(1960), 1, + ACTIONS(1962), 1, anon_sym_LBRACK, - ACTIONS(1964), 1, - anon_sym_DQUOTE, ACTIONS(1966), 1, + anon_sym_DQUOTE, + ACTIONS(1968), 1, anon_sym_SQUOTE, - ACTIONS(2175), 1, - anon_sym_STAR, ACTIONS(2177), 1, + anon_sym_STAR, + ACTIONS(2179), 1, anon_sym_async, - ACTIONS(2181), 1, - anon_sym_get, ACTIONS(2183), 1, + anon_sym_get, + ACTIONS(2185), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2179), 2, + ACTIONS(2181), 2, sym_number, sym_private_property_identifier, - STATE(1128), 3, + STATE(1118), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1952), 4, + ACTIONS(1954), 4, anon_sym_export, anon_sym_let, sym_identifier, @@ -69129,7 +69156,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2185), 7, + ACTIONS(2187), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69137,7 +69164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2187), 12, + ACTIONS(2189), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69154,7 +69181,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2189), 7, + ACTIONS(2187), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69162,7 +69189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2191), 12, + ACTIONS(2189), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69179,7 +69206,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2185), 7, + ACTIONS(2191), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69187,7 +69214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2187), 12, + ACTIONS(2193), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69204,7 +69231,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2185), 7, + ACTIONS(2191), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69212,7 +69239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2187), 12, + ACTIONS(2193), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69225,11 +69252,13 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [39839] = 3, + [39839] = 4, + ACTIONS(2195), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2185), 7, + ACTIONS(612), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69237,9 +69266,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2187), 12, + ACTIONS(610), 11, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -69250,11 +69278,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [39867] = 3, + [39869] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2185), 7, + ACTIONS(2191), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69262,7 +69290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2187), 12, + ACTIONS(2193), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69275,39 +69303,36 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [39895] = 6, - ACTIONS(2197), 1, - anon_sym_LPAREN, - ACTIONS(2199), 1, - anon_sym_DOT, - STATE(959), 1, - sym_arguments, + [39897] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2193), 8, + ACTIONS(2197), 7, anon_sym_export, anon_sym_let, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2195), 8, + ACTIONS(2199), 12, anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [39929] = 3, + [39925] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2185), 7, + ACTIONS(2191), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69315,7 +69340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2187), 12, + ACTIONS(2193), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69328,41 +69353,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [39957] = 8, - ACTIONS(857), 1, - anon_sym_DQUOTE, - ACTIONS(859), 1, - anon_sym_SQUOTE, - ACTIONS(2047), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2135), 2, - sym_number, - sym_private_property_identifier, - STATE(1454), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2087), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(871), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [39995] = 3, + [39953] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2185), 7, + ACTIONS(2191), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69370,7 +69365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2187), 12, + ACTIONS(2193), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69383,11 +69378,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40023] = 3, + [39981] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2185), 7, + ACTIONS(2201), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69395,7 +69390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2187), 12, + ACTIONS(2203), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69408,50 +69403,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40051] = 8, - ACTIONS(857), 1, - anon_sym_DQUOTE, - ACTIONS(859), 1, - anon_sym_SQUOTE, - ACTIONS(2047), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2201), 2, - sym_number, - sym_private_property_identifier, - STATE(1502), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2087), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(871), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40089] = 8, - ACTIONS(857), 1, + [40009] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2203), 2, + ACTIONS(2173), 2, sym_number, sym_private_property_identifier, - STATE(1503), 3, + STATE(1499), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -69460,69 +69425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(871), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40127] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2205), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2207), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [40155] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2205), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2207), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [40183] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2205), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69530,20 +69433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2207), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [40211] = 3, + [40047] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -69568,11 +69458,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40239] = 3, + [40075] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2205), 7, + ACTIONS(2209), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69580,7 +69470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2207), 12, + ACTIONS(2211), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69593,11 +69483,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40267] = 3, + [40103] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2205), 7, + ACTIONS(2209), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69605,7 +69495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2207), 12, + ACTIONS(2211), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69618,11 +69508,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40295] = 3, + [40131] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2185), 7, + ACTIONS(2209), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69630,7 +69520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2187), 12, + ACTIONS(2211), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69643,30 +69533,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40323] = 9, - ACTIONS(857), 1, - anon_sym_DQUOTE, - ACTIONS(859), 1, - anon_sym_SQUOTE, - ACTIONS(2047), 1, - anon_sym_LBRACK, + [40159] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2087), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2133), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1389), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(2213), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69674,7 +69545,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [40363] = 3, + ACTIONS(2215), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [40187] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -69699,11 +69583,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40391] = 3, + [40215] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2213), 7, + ACTIONS(2217), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69711,7 +69595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2215), 12, + ACTIONS(2219), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69724,11 +69608,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40419] = 3, + [40243] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2217), 7, + ACTIONS(2209), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69736,7 +69620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2219), 12, + ACTIONS(2211), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69749,29 +69633,55 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40447] = 8, - ACTIONS(857), 1, + [40271] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2209), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2211), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, anon_sym_DQUOTE, - ACTIONS(859), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [40299] = 9, + ACTIONS(863), 1, + anon_sym_DQUOTE, + ACTIONS(865), 1, + anon_sym_SQUOTE, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2163), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - STATE(1482), 3, + ACTIONS(2087), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2135), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2087), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69779,13 +69689,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [40485] = 4, - ACTIONS(2221), 1, - sym__automatic_semicolon, + [40339] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2187), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2189), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [40367] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(632), 7, + ACTIONS(2187), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69793,8 +69726,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(630), 11, + ACTIONS(2189), 12, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -69805,11 +69739,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40515] = 3, + [40395] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2185), 7, + ACTIONS(2187), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69817,7 +69751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2187), 12, + ACTIONS(2189), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69830,13 +69764,13 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40543] = 4, - ACTIONS(2223), 1, + [40423] = 4, + ACTIONS(2221), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(508), 7, + ACTIONS(510), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69844,7 +69778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(506), 11, + ACTIONS(508), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -69856,20 +69790,45 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40573] = 8, - ACTIONS(857), 1, + [40453] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2187), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2189), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, anon_sym_DQUOTE, - ACTIONS(859), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [40481] = 8, + ACTIONS(863), 1, + anon_sym_DQUOTE, + ACTIONS(865), 1, + anon_sym_SQUOTE, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 2, + ACTIONS(2223), 2, sym_number, sym_private_property_identifier, - STATE(1487), 3, + STATE(1551), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -69878,7 +69837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69886,11 +69845,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [40611] = 3, + [40519] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2227), 7, + ACTIONS(2187), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69898,7 +69857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2229), 12, + ACTIONS(2189), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69911,11 +69870,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40639] = 3, + [40547] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2231), 7, + ACTIONS(2187), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69923,7 +69882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2233), 12, + ACTIONS(2189), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69936,36 +69895,69 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40667] = 3, + [40575] = 6, + ACTIONS(2229), 1, + anon_sym_LPAREN, + ACTIONS(2231), 1, + anon_sym_DOT, + STATE(975), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2231), 7, + ACTIONS(2225), 8, anon_sym_export, anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2233), 12, + ACTIONS(2227), 8, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40695] = 3, + [40609] = 8, + ACTIONS(863), 1, + anon_sym_DQUOTE, + ACTIONS(865), 1, + anon_sym_SQUOTE, + ACTIONS(2049), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2233), 2, + sym_number, + sym_private_property_identifier, + STATE(1550), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2087), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(873), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [40647] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2231), 7, + ACTIONS(2187), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69973,7 +69965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2233), 12, + ACTIONS(2189), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69986,20 +69978,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40723] = 8, - ACTIONS(857), 1, + [40675] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2235), 2, + ACTIONS(2147), 2, sym_number, sym_private_property_identifier, - STATE(1486), 3, + STATE(1529), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -70008,7 +70000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70016,11 +70008,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [40761] = 3, + [40713] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2231), 7, + ACTIONS(2187), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70028,7 +70020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2233), 12, + ACTIONS(2189), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -70041,11 +70033,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40789] = 3, + [40741] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2231), 7, + ACTIONS(2191), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70053,7 +70045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2233), 12, + ACTIONS(2193), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -70066,11 +70058,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40817] = 3, + [40769] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2231), 7, + ACTIONS(2187), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70078,7 +70070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2233), 12, + ACTIONS(2189), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -70091,11 +70083,29 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40845] = 3, + [40797] = 8, + ACTIONS(863), 1, + anon_sym_DQUOTE, + ACTIONS(865), 1, + anon_sym_SQUOTE, + ACTIONS(2049), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2185), 7, + ACTIONS(2235), 2, + sym_number, + sym_private_property_identifier, + STATE(1533), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2087), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70103,37 +70113,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2187), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, + [40835] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, + ACTIONS(865), 1, anon_sym_SQUOTE, + ACTIONS(2049), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2237), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, + STATE(1534), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2087), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(873), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, [40873] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2237), 9, + ACTIONS(1549), 7, anon_sym_export, anon_sym_let, - anon_sym_DOT, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2239), 9, + ACTIONS(1551), 11, anon_sym_STAR, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, @@ -70144,7 +70171,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 7, + ACTIONS(2239), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70152,7 +70179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1453), 11, + ACTIONS(2241), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -70168,7 +70195,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2241), 7, + ACTIONS(636), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70176,7 +70203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2243), 11, + ACTIONS(634), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -70192,7 +70219,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, + ACTIONS(2243), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70200,7 +70227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2247), 11, + ACTIONS(2245), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -70212,11 +70239,13 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40981] = 3, + [40981] = 4, + ACTIONS(2247), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2249), 7, + ACTIONS(2243), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70224,10 +70253,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2251), 11, + ACTIONS(2245), 10, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, sym_glimmer_opening_tag, anon_sym_DQUOTE, @@ -70236,35 +70264,38 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41008] = 3, + [41010] = 6, + ACTIONS(2254), 1, + anon_sym_AT, + STATE(936), 1, + aux_sym_export_statement_repeat1, + STATE(977), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2253), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2255), 11, + ACTIONS(2252), 7, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, aux_sym_method_definition_token1, - [41035] = 3, + ACTIONS(2250), 8, + anon_sym_export, + anon_sym_let, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [41043] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(640), 7, + ACTIONS(2257), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70272,7 +70303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(638), 11, + ACTIONS(2259), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -70284,13 +70315,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41062] = 4, - ACTIONS(2257), 1, - anon_sym_SEMI, + [41070] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2253), 7, + ACTIONS(612), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70298,9 +70327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2255), 10, + ACTIONS(610), 11, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, sym_glimmer_opening_tag, anon_sym_DQUOTE, @@ -70309,38 +70339,35 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41091] = 6, - ACTIONS(2264), 1, - anon_sym_AT, - STATE(939), 1, - aux_sym_export_statement_repeat1, - STATE(981), 1, - sym_decorator, + [41097] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2262), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - aux_sym_method_definition_token1, - ACTIONS(2260), 8, + ACTIONS(2261), 9, anon_sym_export, anon_sym_let, + anon_sym_DOT, anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, + ACTIONS(2263), 9, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, [41124] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(632), 7, + ACTIONS(2265), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70348,7 +70375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(630), 11, + ACTIONS(2267), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -70364,7 +70391,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1407), 7, + ACTIONS(2269), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70372,7 +70399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1409), 11, + ACTIONS(2271), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -70388,7 +70415,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2267), 7, + ACTIONS(1423), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70396,7 +70423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2269), 11, + ACTIONS(1425), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -70408,105 +70435,102 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41205] = 11, - ACTIONS(857), 1, + [41205] = 10, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(2271), 1, + ACTIONS(2145), 1, anon_sym_STAR, - ACTIONS(2275), 1, - anon_sym_get, - ACTIONS(2277), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2273), 2, + ACTIONS(2147), 2, sym_number, sym_private_property_identifier, - STATE(1492), 3, + ACTIONS(2149), 2, + anon_sym_get, + anon_sym_set, + STATE(1529), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 5, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [41247] = 9, - ACTIONS(857), 1, + [41245] = 11, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, + ACTIONS(2273), 1, + anon_sym_STAR, + ACTIONS(2277), 1, + anon_sym_get, ACTIONS(2279), 1, - anon_sym_EQ_GT, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2281), 2, + ACTIONS(2275), 2, sym_number, sym_private_property_identifier, - STATE(1531), 3, + STATE(1553), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [41285] = 13, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(811), 1, - anon_sym_var, - ACTIONS(825), 1, - anon_sym_class, - ACTIONS(827), 1, - anon_sym_async, - ACTIONS(829), 1, - anon_sym_function, + [41287] = 9, + ACTIONS(863), 1, + anon_sym_DQUOTE, + ACTIONS(865), 1, + anon_sym_SQUOTE, + ACTIONS(2049), 1, + anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(2283), 1, - anon_sym_default, - STATE(348), 1, - sym_declaration, - STATE(981), 1, - sym_decorator, - STATE(1248), 1, - aux_sym_export_statement_repeat1, + ACTIONS(2281), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(813), 2, + ACTIONS(2283), 2, + sym_number, + sym_private_property_identifier, + STATE(1460), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(873), 7, + anon_sym_export, anon_sym_let, - anon_sym_const, - STATE(357), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [41331] = 11, - ACTIONS(857), 1, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [41325] = 11, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, @@ -70522,190 +70546,253 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2287), 2, sym_number, sym_private_property_identifier, - STATE(1460), 3, + STATE(1378), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 5, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [41373] = 10, - ACTIONS(857), 1, + [41367] = 11, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(2161), 1, + ACTIONS(2293), 1, anon_sym_STAR, + ACTIONS(2297), 1, + anon_sym_get, + ACTIONS(2299), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2163), 2, + ACTIONS(2295), 2, sym_number, sym_private_property_identifier, - ACTIONS(2165), 2, - anon_sym_get, - anon_sym_set, - STATE(1482), 3, + STATE(1365), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 5, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [41413] = 11, - ACTIONS(857), 1, + [41409] = 10, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(2293), 1, + ACTIONS(2301), 1, anon_sym_STAR, - ACTIONS(2297), 1, - anon_sym_get, - ACTIONS(2299), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2295), 2, + ACTIONS(2283), 2, sym_number, sym_private_property_identifier, - STATE(1474), 3, + ACTIONS(2303), 2, + anon_sym_get, + anon_sym_set, + STATE(1460), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 5, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [41455] = 11, - ACTIONS(857), 1, + [41449] = 13, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(813), 1, + anon_sym_var, + ACTIONS(827), 1, + anon_sym_class, + ACTIONS(829), 1, + anon_sym_async, + ACTIONS(831), 1, + anon_sym_function, + ACTIONS(2087), 1, + anon_sym_LPAREN, + ACTIONS(2305), 1, + anon_sym_default, + STATE(361), 1, + sym_declaration, + STATE(977), 1, + sym_decorator, + STATE(1213), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(815), 2, + anon_sym_let, + anon_sym_const, + STATE(363), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [41495] = 11, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(2301), 1, + ACTIONS(2307), 1, anon_sym_STAR, - ACTIONS(2305), 1, + ACTIONS(2311), 1, anon_sym_get, - ACTIONS(2307), 1, + ACTIONS(2313), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2303), 2, + ACTIONS(2309), 2, sym_number, sym_private_property_identifier, - STATE(1505), 3, + STATE(1448), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 5, + ACTIONS(873), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [41497] = 12, - ACTIONS(857), 1, + [41537] = 12, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(2309), 1, + ACTIONS(2315), 1, anon_sym_STAR, - ACTIONS(2311), 1, + ACTIONS(2317), 1, anon_sym_async, - ACTIONS(2315), 1, + ACTIONS(2321), 1, anon_sym_get, - ACTIONS(2317), 1, + ACTIONS(2323), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2313), 2, + ACTIONS(2319), 2, sym_number, sym_private_property_identifier, - STATE(1394), 3, + STATE(1447), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 4, + ACTIONS(873), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [41541] = 10, - ACTIONS(857), 1, + [41581] = 10, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, - anon_sym_LPAREN, - ACTIONS(2319), 1, + ACTIONS(2099), 1, anon_sym_STAR, + ACTIONS(2325), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2281), 2, + ACTIONS(2173), 2, sym_number, sym_private_property_identifier, - ACTIONS(2321), 2, + ACTIONS(2175), 2, anon_sym_get, anon_sym_set, - STATE(1531), 3, + STATE(1499), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 5, + ACTIONS(873), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [41581] = 8, - ACTIONS(857), 1, + [41620] = 12, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(813), 1, + anon_sym_var, + ACTIONS(827), 1, + anon_sym_class, + ACTIONS(829), 1, + anon_sym_async, + ACTIONS(831), 1, + anon_sym_function, + ACTIONS(2327), 1, + anon_sym_default, + STATE(361), 1, + sym_declaration, + STATE(977), 1, + sym_decorator, + STATE(1213), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(815), 2, + anon_sym_let, + anon_sym_const, + STATE(363), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [41663] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2281), 2, + ACTIONS(2329), 2, sym_number, sym_private_property_identifier, - STATE(1531), 3, + STATE(1419), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70713,26 +70800,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [41616] = 8, - ACTIONS(857), 1, + [41698] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2323), 2, + ACTIONS(2331), 2, sym_number, sym_private_property_identifier, - STATE(1463), 3, + STATE(1433), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70740,48 +70827,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [41651] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1579), 8, - anon_sym_export, - anon_sym_let, - anon_sym_class, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1581), 8, - anon_sym_STAR, - anon_sym_LBRACK, + [41733] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, + ACTIONS(865), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41676] = 8, - ACTIONS(857), 1, - anon_sym_DQUOTE, - ACTIONS(859), 1, - anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2325), 2, + ACTIONS(2333), 2, sym_number, sym_private_property_identifier, - STATE(1421), 3, + STATE(1477), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70789,26 +70854,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [41711] = 8, - ACTIONS(857), 1, + [41768] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2327), 2, + ACTIONS(2335), 2, sym_number, sym_private_property_identifier, - STATE(1598), 3, + STATE(1434), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70816,65 +70881,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [41746] = 8, - ACTIONS(857), 1, - anon_sym_DQUOTE, - ACTIONS(859), 1, - anon_sym_SQUOTE, - ACTIONS(2047), 1, - anon_sym_LBRACK, - ACTIONS(2087), 1, - anon_sym_LPAREN, + [41803] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2329), 2, - sym_number, - sym_private_property_identifier, - STATE(1600), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(1519), 8, anon_sym_export, anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [41781] = 8, - ACTIONS(857), 1, + ACTIONS(1521), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(859), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, - anon_sym_LBRACK, - ACTIONS(2087), 1, - anon_sym_LPAREN, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41828] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2331), 2, - sym_number, - sym_private_property_identifier, - STATE(1495), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(1453), 8, anon_sym_export, anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [41816] = 3, + ACTIONS(1455), 8, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41853] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2333), 8, + ACTIONS(1567), 8, anon_sym_export, anon_sym_let, anon_sym_class, @@ -70883,7 +70938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2335), 8, + ACTIONS(1569), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -70892,12 +70947,41 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41841] = 8, - ACTIONS(857), 1, + [41878] = 10, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(875), 1, + anon_sym_async, + ACTIONS(2049), 1, + anon_sym_LBRACK, + ACTIONS(2085), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(869), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(877), 2, + anon_sym_get, + anon_sym_set, + STATE(1580), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(873), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [41917] = 8, + ACTIONS(863), 1, + anon_sym_DQUOTE, + ACTIONS(865), 1, + anon_sym_SQUOTE, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, @@ -70907,11 +70991,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(1523), 3, + STATE(1444), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70919,41 +71003,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [41876] = 10, - ACTIONS(857), 1, + [41952] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2097), 1, - anon_sym_STAR, - ACTIONS(2339), 1, - anon_sym_async, + ACTIONS(2087), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2135), 2, + ACTIONS(2339), 2, sym_number, sym_private_property_identifier, - ACTIONS(2137), 2, - anon_sym_get, - anon_sym_set, - STATE(1454), 3, + STATE(1565), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 4, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [41915] = 8, - ACTIONS(857), 1, + anon_sym_get, + anon_sym_set, + [41987] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, @@ -70963,11 +71045,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2341), 2, sym_number, sym_private_property_identifier, - STATE(1465), 3, + STATE(1564), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70975,57 +71057,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [41950] = 12, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(811), 1, - anon_sym_var, - ACTIONS(825), 1, - anon_sym_class, - ACTIONS(827), 1, - anon_sym_async, - ACTIONS(829), 1, - anon_sym_function, - ACTIONS(2343), 1, - anon_sym_default, - STATE(348), 1, - sym_declaration, - STATE(981), 1, - sym_decorator, - STATE(1248), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(813), 2, - anon_sym_let, - anon_sym_const, - STATE(357), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [41993] = 8, - ACTIONS(857), 1, + [42022] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2163), 2, + ACTIONS(2343), 2, sym_number, sym_private_property_identifier, - STATE(1482), 3, + STATE(1445), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71033,12 +71084,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42028] = 11, - ACTIONS(857), 1, + [42057] = 11, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2345), 1, anon_sym_STAR, @@ -71054,21 +71105,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2349), 2, sym_number, sym_private_property_identifier, - STATE(1485), 3, + STATE(1446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 4, + ACTIONS(873), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [42069] = 8, - ACTIONS(857), 1, + [42098] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, @@ -71078,11 +71129,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2355), 2, sym_number, sym_private_property_identifier, - STATE(1496), 3, + STATE(1562), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71090,12 +71141,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42104] = 8, - ACTIONS(857), 1, + [42133] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, @@ -71105,11 +71156,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2357), 2, sym_number, sym_private_property_identifier, - STATE(1601), 3, + STATE(1561), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71117,48 +71168,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42139] = 3, + [42168] = 8, + ACTIONS(863), 1, + anon_sym_DQUOTE, + ACTIONS(865), 1, + anon_sym_SQUOTE, + ACTIONS(2049), 1, + anon_sym_LBRACK, + ACTIONS(2087), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1563), 8, + ACTIONS(2359), 2, + sym_number, + sym_private_property_identifier, + STATE(1363), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1565), 8, - anon_sym_STAR, - anon_sym_LBRACK, + [42203] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, + ACTIONS(865), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [42164] = 8, - ACTIONS(857), 1, - anon_sym_DQUOTE, - ACTIONS(859), 1, - anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2359), 2, + ACTIONS(2283), 2, sym_number, sym_private_property_identifier, - STATE(1506), 3, + STATE(1460), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71166,12 +71222,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42199] = 8, - ACTIONS(857), 1, + [42238] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, @@ -71181,11 +71237,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2361), 2, sym_number, sym_private_property_identifier, - STATE(1507), 3, + STATE(1555), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71193,12 +71249,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42234] = 8, - ACTIONS(857), 1, + [42273] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, @@ -71208,11 +71264,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2363), 2, sym_number, sym_private_property_identifier, - STATE(1512), 3, + STATE(1554), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71220,12 +71276,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42269] = 8, - ACTIONS(857), 1, + [42308] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, @@ -71235,11 +71291,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2365), 2, sym_number, sym_private_property_identifier, - STATE(1513), 3, + STATE(1385), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71247,12 +71303,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42304] = 8, - ACTIONS(857), 1, + [42343] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, @@ -71262,11 +71318,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2367), 2, sym_number, sym_private_property_identifier, - STATE(1515), 3, + STATE(1364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71274,107 +71330,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42339] = 8, - ACTIONS(857), 1, - anon_sym_DQUOTE, - ACTIONS(859), 1, - anon_sym_SQUOTE, - ACTIONS(2047), 1, - anon_sym_LBRACK, - ACTIONS(2087), 1, - anon_sym_LPAREN, + [42378] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2369), 2, - sym_number, - sym_private_property_identifier, - STATE(1516), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(2369), 8, anon_sym_export, anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42374] = 8, - ACTIONS(857), 1, + ACTIONS(2371), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(859), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, - anon_sym_LBRACK, - ACTIONS(2087), 1, - anon_sym_LPAREN, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [42403] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2371), 2, - sym_number, - sym_private_property_identifier, - STATE(1435), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(2225), 8, anon_sym_export, anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42409] = 8, - ACTIONS(857), 1, + ACTIONS(2227), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(859), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, - anon_sym_LBRACK, - ACTIONS(2087), 1, - anon_sym_LPAREN, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [42428] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2373), 2, - sym_number, - sym_private_property_identifier, - STATE(1572), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(2373), 8, anon_sym_export, anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42444] = 8, - ACTIONS(857), 1, + ACTIONS(2375), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(859), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [42453] = 8, + ACTIONS(863), 1, + anon_sym_DQUOTE, + ACTIONS(865), 1, + anon_sym_SQUOTE, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2375), 2, + ACTIONS(2147), 2, sym_number, sym_private_property_identifier, - STATE(1444), 3, + STATE(1529), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71382,12 +71423,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42479] = 8, - ACTIONS(857), 1, + [42488] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, @@ -71397,11 +71438,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2377), 2, sym_number, sym_private_property_identifier, - STATE(1476), 3, + STATE(1547), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71409,34 +71450,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42514] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2193), 8, - anon_sym_export, - anon_sym_let, - anon_sym_class, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2195), 8, - anon_sym_STAR, - anon_sym_LBRACK, + [42523] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, + ACTIONS(865), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [42539] = 8, - ACTIONS(857), 1, - anon_sym_DQUOTE, - ACTIONS(859), 1, - anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, @@ -71446,11 +71465,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2379), 2, sym_number, sym_private_property_identifier, - STATE(1363), 3, + STATE(1546), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71458,85 +71477,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42574] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2381), 8, - anon_sym_export, - anon_sym_let, - anon_sym_class, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2383), 8, - anon_sym_STAR, - anon_sym_LBRACK, + [42558] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, + ACTIONS(865), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [42599] = 3, + ACTIONS(2049), 1, + anon_sym_LBRACK, + ACTIONS(2087), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1495), 8, + ACTIONS(2381), 2, + sym_number, + sym_private_property_identifier, + STATE(1375), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1497), 8, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [42624] = 10, - ACTIONS(857), 1, + [42593] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(873), 1, - anon_sym_async, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_STAR, + ACTIONS(2087), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(2383), 2, sym_number, sym_private_property_identifier, - ACTIONS(875), 2, - anon_sym_get, - anon_sym_set, - STATE(1389), 3, + STATE(1382), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 4, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [42663] = 8, - ACTIONS(857), 1, + anon_sym_get, + anon_sym_set, + [42628] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, @@ -71546,11 +71546,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2385), 2, sym_number, sym_private_property_identifier, - STATE(1475), 3, + STATE(1381), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71558,87 +71558,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42698] = 12, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(811), 1, - anon_sym_var, - ACTIONS(825), 1, - anon_sym_class, - ACTIONS(827), 1, - anon_sym_async, - ACTIONS(829), 1, - anon_sym_function, - ACTIONS(2283), 1, - anon_sym_default, - STATE(348), 1, - sym_declaration, - STATE(981), 1, - sym_decorator, - STATE(1248), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(813), 2, - anon_sym_let, - anon_sym_const, - STATE(357), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [42741] = 11, - ACTIONS(857), 1, + [42663] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, - ACTIONS(2387), 1, - anon_sym_STAR, - ACTIONS(2389), 1, - anon_sym_async, - ACTIONS(2393), 1, - anon_sym_get, - ACTIONS(2395), 1, - anon_sym_set, + ACTIONS(2087), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2391), 2, + ACTIONS(2387), 2, sym_number, sym_private_property_identifier, - STATE(1545), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 4, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [42782] = 8, - ACTIONS(857), 1, + anon_sym_get, + anon_sym_set, + [42698] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(2087), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2397), 2, + ACTIONS(2389), 2, sym_number, sym_private_property_identifier, - STATE(1499), 3, + STATE(1374), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71646,37 +71612,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42817] = 7, - ACTIONS(857), 1, + [42733] = 11, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(2393), 1, + anon_sym_async, + ACTIONS(2397), 1, + anon_sym_get, + ACTIONS(2399), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2399), 2, + ACTIONS(2395), 2, sym_number, sym_private_property_identifier, - STATE(1511), 3, + STATE(1532), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [42849] = 7, - ACTIONS(857), 1, + [42774] = 12, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(813), 1, + anon_sym_var, + ACTIONS(827), 1, + anon_sym_class, + ACTIONS(829), 1, + anon_sym_async, + ACTIONS(831), 1, + anon_sym_function, + ACTIONS(2305), 1, + anon_sym_default, + STATE(361), 1, + sym_declaration, + STATE(977), 1, + sym_decorator, + STATE(1213), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(815), 2, + anon_sym_let, + anon_sym_const, + STATE(363), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [42817] = 7, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -71684,11 +71686,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2401), 2, sym_number, sym_private_property_identifier, - STATE(1595), 3, + STATE(1368), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71696,24 +71698,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42881] = 7, - ACTIONS(857), 1, + [42849] = 7, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2403), 2, + ACTIONS(2365), 2, sym_number, sym_private_property_identifier, - STATE(1483), 3, + STATE(1385), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71721,24 +71723,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42913] = 7, - ACTIONS(857), 1, + [42881] = 7, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2355), 2, + ACTIONS(2403), 2, sym_number, sym_private_property_identifier, - STATE(1496), 3, + STATE(1545), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71746,24 +71748,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42945] = 7, - ACTIONS(857), 1, + [42913] = 7, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2405), 2, + ACTIONS(869), 2, sym_number, sym_private_property_identifier, - STATE(1497), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71771,12 +71773,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42977] = 7, - ACTIONS(857), 1, + [42945] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2405), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [42967] = 7, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -71784,11 +71806,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2407), 2, sym_number, sym_private_property_identifier, - STATE(1473), 3, + STATE(1415), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71796,12 +71818,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43009] = 7, - ACTIONS(857), 1, + [42999] = 7, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -71809,11 +71831,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2409), 2, sym_number, sym_private_property_identifier, - STATE(1500), 3, + STATE(1383), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71821,12 +71843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43041] = 7, - ACTIONS(857), 1, + [43031] = 7, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -71834,11 +71856,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2411), 2, sym_number, sym_private_property_identifier, - STATE(1504), 3, + STATE(1563), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71846,12 +71868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43073] = 7, - ACTIONS(857), 1, + [43063] = 7, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -71859,11 +71881,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2413), 2, sym_number, sym_private_property_identifier, - STATE(1514), 3, + STATE(1379), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71871,64 +71893,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43105] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2415), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [43127] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2417), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [43149] = 7, - ACTIONS(857), 1, + [43095] = 7, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2419), 2, + ACTIONS(2387), 2, sym_number, sym_private_property_identifier, - STATE(1432), 3, + STATE(1544), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71936,24 +71918,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43181] = 7, - ACTIONS(857), 1, + [43127] = 7, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2421), 2, + ACTIONS(2415), 2, sym_number, sym_private_property_identifier, - STATE(1537), 3, + STATE(1530), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71961,24 +71943,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43213] = 7, - ACTIONS(857), 1, + [43159] = 7, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2135), 2, + ACTIONS(2417), 2, sym_number, sym_private_property_identifier, - STATE(1454), 3, + STATE(1560), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71986,24 +71968,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43245] = 7, - ACTIONS(857), 1, + [43191] = 7, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(863), 2, + ACTIONS(2147), 2, sym_number, sym_private_property_identifier, - STATE(1389), 3, + STATE(1529), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72011,24 +71993,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43277] = 7, - ACTIONS(857), 1, + [43223] = 7, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2423), 2, + ACTIONS(2173), 2, sym_number, sym_private_property_identifier, - STATE(1449), 3, + STATE(1499), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72036,11 +72018,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43309] = 2, + [43255] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2425), 15, + ACTIONS(2419), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72056,11 +72038,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [43331] = 2, + [43277] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2427), 15, + ACTIONS(2421), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72076,24 +72058,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [43353] = 7, - ACTIONS(857), 1, + [43299] = 7, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2281), 2, + ACTIONS(2423), 2, sym_number, sym_private_property_identifier, - STATE(1531), 3, + STATE(1431), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72101,24 +72083,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43385] = 7, - ACTIONS(857), 1, + [43331] = 7, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2429), 2, + ACTIONS(2283), 2, sym_number, sym_private_property_identifier, - STATE(1468), 3, + STATE(1460), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72126,24 +72108,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43417] = 7, - ACTIONS(857), 1, + [43363] = 7, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2325), 2, + ACTIONS(2425), 2, sym_number, sym_private_property_identifier, - STATE(1421), 3, + STATE(1449), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72151,11 +72133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43449] = 2, + [43395] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2431), 15, + ACTIONS(2427), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72171,24 +72153,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [43471] = 7, - ACTIONS(857), 1, + [43417] = 7, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2047), 1, + ACTIONS(2049), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2429), 2, + sym_number, + sym_private_property_identifier, + STATE(1548), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(873), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [43449] = 7, + ACTIONS(863), 1, + anon_sym_DQUOTE, + ACTIONS(865), 1, + anon_sym_SQUOTE, + ACTIONS(2049), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2163), 2, + ACTIONS(2431), 2, sym_number, sym_private_property_identifier, - STATE(1482), 3, + STATE(1552), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(871), 7, + ACTIONS(873), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72196,27 +72203,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, + [43481] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2433), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, [43503] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2433), 1, + ACTIONS(2435), 1, anon_sym_LBRACE, - ACTIONS(2437), 1, - sym_html_character_reference, ACTIONS(2439), 1, - anon_sym_LT, + sym_html_character_reference, ACTIONS(2441), 1, + anon_sym_LT, + ACTIONS(2443), 1, anon_sym_LT_SLASH, - STATE(709), 1, + STATE(529), 1, sym_jsx_closing_element, - STATE(1012), 1, + STATE(1018), 1, sym_jsx_opening_element, - ACTIONS(2435), 2, + ACTIONS(2437), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1017), 5, + STATE(1013), 5, sym_jsx_element, sym_jsx_text, sym_jsx_expression, @@ -72227,19 +72254,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2433), 1, + ACTIONS(2435), 1, anon_sym_LBRACE, - ACTIONS(2439), 1, + ACTIONS(2441), 1, anon_sym_LT, - ACTIONS(2443), 1, - sym_html_character_reference, ACTIONS(2445), 1, + sym_html_character_reference, + ACTIONS(2447), 1, anon_sym_LT_SLASH, - STATE(1012), 1, + STATE(1018), 1, sym_jsx_opening_element, - STATE(1082), 1, + STATE(1180), 1, sym_jsx_closing_element, - ACTIONS(2435), 2, + ACTIONS(2437), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, STATE(1015), 5, @@ -72253,22 +72280,22 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2433), 1, + ACTIONS(2435), 1, anon_sym_LBRACE, - ACTIONS(2439), 1, + ACTIONS(2441), 1, anon_sym_LT, - ACTIONS(2447), 1, - sym_html_character_reference, - ACTIONS(2449), 1, + ACTIONS(2443), 1, anon_sym_LT_SLASH, - STATE(511), 1, + ACTIONS(2449), 1, + sym_html_character_reference, + STATE(569), 1, sym_jsx_closing_element, - STATE(1012), 1, + STATE(1018), 1, sym_jsx_opening_element, - ACTIONS(2435), 2, + ACTIONS(2437), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1016), 5, + STATE(1020), 5, sym_jsx_element, sym_jsx_text, sym_jsx_expression, @@ -72279,22 +72306,22 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2433), 1, + ACTIONS(2435), 1, anon_sym_LBRACE, - ACTIONS(2439), 1, + ACTIONS(2441), 1, anon_sym_LT, ACTIONS(2451), 1, sym_html_character_reference, ACTIONS(2453), 1, anon_sym_LT_SLASH, - STATE(1012), 1, - sym_jsx_opening_element, - STATE(1154), 1, + STATE(731), 1, sym_jsx_closing_element, - ACTIONS(2435), 2, + STATE(1018), 1, + sym_jsx_opening_element, + ACTIONS(2437), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1020), 5, + STATE(1017), 5, sym_jsx_element, sym_jsx_text, sym_jsx_expression, @@ -72305,19 +72332,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2433), 1, + ACTIONS(2435), 1, anon_sym_LBRACE, - ACTIONS(2439), 1, + ACTIONS(2441), 1, anon_sym_LT, - ACTIONS(2445), 1, + ACTIONS(2447), 1, anon_sym_LT_SLASH, - ACTIONS(2451), 1, + ACTIONS(2449), 1, sym_html_character_reference, - STATE(1012), 1, + STATE(1018), 1, sym_jsx_opening_element, - STATE(1088), 1, + STATE(1176), 1, sym_jsx_closing_element, - ACTIONS(2435), 2, + ACTIONS(2437), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, STATE(1020), 5, @@ -72331,19 +72358,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2433), 1, + ACTIONS(2435), 1, anon_sym_LBRACE, - ACTIONS(2439), 1, + ACTIONS(2441), 1, anon_sym_LT, ACTIONS(2449), 1, - anon_sym_LT_SLASH, - ACTIONS(2451), 1, sym_html_character_reference, - STATE(549), 1, - sym_jsx_closing_element, - STATE(1012), 1, + ACTIONS(2455), 1, + anon_sym_LT_SLASH, + STATE(1018), 1, sym_jsx_opening_element, - ACTIONS(2435), 2, + STATE(1129), 1, + sym_jsx_closing_element, + ACTIONS(2437), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, STATE(1020), 5, @@ -72357,19 +72384,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2433), 1, + ACTIONS(2435), 1, anon_sym_LBRACE, - ACTIONS(2439), 1, - anon_sym_LT, ACTIONS(2441), 1, - anon_sym_LT_SLASH, - ACTIONS(2451), 1, + anon_sym_LT, + ACTIONS(2449), 1, sym_html_character_reference, - STATE(748), 1, + ACTIONS(2453), 1, + anon_sym_LT_SLASH, + STATE(668), 1, sym_jsx_closing_element, - STATE(1012), 1, + STATE(1018), 1, sym_jsx_opening_element, - ACTIONS(2435), 2, + ACTIONS(2437), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, STATE(1020), 5, @@ -72383,69 +72410,70 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2433), 1, + ACTIONS(2435), 1, anon_sym_LBRACE, - ACTIONS(2439), 1, + ACTIONS(2441), 1, anon_sym_LT, - ACTIONS(2453), 1, - anon_sym_LT_SLASH, ACTIONS(2455), 1, + anon_sym_LT_SLASH, + ACTIONS(2457), 1, sym_html_character_reference, - STATE(1012), 1, + STATE(1018), 1, sym_jsx_opening_element, - STATE(1150), 1, + STATE(1122), 1, sym_jsx_closing_element, - ACTIONS(2435), 2, + ACTIONS(2437), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1014), 5, + STATE(1016), 5, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [43791] = 10, - ACTIONS(1964), 1, - anon_sym_DQUOTE, + [43791] = 11, ACTIONS(1966), 1, + anon_sym_DQUOTE, + ACTIONS(1968), 1, anon_sym_SQUOTE, - ACTIONS(2457), 1, - sym_identifier, ACTIONS(2459), 1, - anon_sym_STAR, + sym_identifier, ACTIONS(2461), 1, + anon_sym_STAR, + ACTIONS(2463), 1, anon_sym_LBRACE, - STATE(1209), 1, + ACTIONS(2467), 1, + anon_sym_DOT, + STATE(1193), 1, sym_string, - STATE(1436), 1, + STATE(1361), 1, sym_import_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1687), 2, + STATE(1653), 2, sym_namespace_import, sym_named_imports, - ACTIONS(2463), 4, + ACTIONS(2465), 3, anon_sym_LPAREN, - anon_sym_DOT, sym_optional_chain, anon_sym_BQUOTE, - [43827] = 9, + [43829] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2465), 1, + ACTIONS(2469), 1, anon_sym_LBRACE, - ACTIONS(2471), 1, + ACTIONS(2475), 1, sym_html_character_reference, - ACTIONS(2474), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(2477), 1, + ACTIONS(2481), 1, anon_sym_LT_SLASH, - STATE(1012), 1, + STATE(1018), 1, sym_jsx_opening_element, - ACTIONS(2468), 2, + ACTIONS(2472), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, STATE(1020), 5, @@ -72454,893 +72482,929 @@ static const uint16_t ts_small_parse_table[] = { sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [43860] = 11, - ACTIONS(2479), 1, + [43862] = 11, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2483), 1, + ACTIONS(2487), 1, anon_sym_COLON, - ACTIONS(2485), 1, + ACTIONS(2489), 1, anon_sym_GT, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2489), 1, + ACTIONS(2493), 1, anon_sym_DOT, - ACTIONS(2491), 1, + ACTIONS(2495), 1, anon_sym_SLASH_GT, STATE(1035), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [43896] = 11, - ACTIONS(2479), 1, + [43898] = 11, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2483), 1, + ACTIONS(2487), 1, anon_sym_COLON, - ACTIONS(2485), 1, + ACTIONS(2489), 1, anon_sym_GT, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2489), 1, - anon_sym_DOT, ACTIONS(2493), 1, + anon_sym_DOT, + ACTIONS(2497), 1, anon_sym_SLASH_GT, - STATE(1048), 1, + STATE(1054), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [43932] = 11, - ACTIONS(2479), 1, + [43934] = 11, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2483), 1, + ACTIONS(2487), 1, anon_sym_COLON, - ACTIONS(2485), 1, + ACTIONS(2489), 1, anon_sym_GT, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2489), 1, + ACTIONS(2493), 1, anon_sym_DOT, - ACTIONS(2495), 1, + ACTIONS(2499), 1, anon_sym_SLASH_GT, - STATE(1038), 1, + STATE(1037), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [43968] = 11, - ACTIONS(2479), 1, + [43970] = 11, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2483), 1, + ACTIONS(2487), 1, anon_sym_COLON, - ACTIONS(2485), 1, + ACTIONS(2489), 1, anon_sym_GT, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2489), 1, + ACTIONS(2493), 1, anon_sym_DOT, - ACTIONS(2497), 1, + ACTIONS(2501), 1, anon_sym_SLASH_GT, - STATE(1042), 1, + STATE(1044), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44004] = 10, - ACTIONS(2479), 1, + [44006] = 10, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, - anon_sym_LBRACE, ACTIONS(2485), 1, + anon_sym_LBRACE, + ACTIONS(2489), 1, anon_sym_GT, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2489), 1, - anon_sym_DOT, ACTIONS(2493), 1, + anon_sym_DOT, + ACTIONS(2501), 1, anon_sym_SLASH_GT, - STATE(1036), 1, + STATE(1050), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44037] = 10, - ACTIONS(2479), 1, - sym_identifier, - ACTIONS(2481), 1, - anon_sym_LBRACE, + [44039] = 10, ACTIONS(2483), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(2485), 1, + anon_sym_LBRACE, + ACTIONS(2489), 1, anon_sym_GT, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2497), 1, + ACTIONS(2493), 1, + anon_sym_DOT, + ACTIONS(2499), 1, anon_sym_SLASH_GT, STATE(1039), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44070] = 10, - ACTIONS(2479), 1, + [44072] = 10, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2483), 1, + ACTIONS(2487), 1, anon_sym_COLON, - ACTIONS(2485), 1, + ACTIONS(2489), 1, anon_sym_GT, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2493), 1, + ACTIONS(2495), 1, anon_sym_SLASH_GT, - STATE(1043), 1, + STATE(1051), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44103] = 10, - ACTIONS(2479), 1, - sym_identifier, - ACTIONS(2481), 1, - anon_sym_LBRACE, + [44105] = 10, ACTIONS(2483), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(2485), 1, + anon_sym_LBRACE, + ACTIONS(2489), 1, anon_sym_GT, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, + ACTIONS(2493), 1, + anon_sym_DOT, ACTIONS(2495), 1, anon_sym_SLASH_GT, - STATE(1041), 1, + STATE(1053), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44136] = 10, - ACTIONS(2479), 1, + [44138] = 10, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2483), 1, + ACTIONS(2487), 1, anon_sym_COLON, - ACTIONS(2485), 1, + ACTIONS(2489), 1, anon_sym_GT, - ACTIONS(2487), 1, - sym_jsx_identifier, ACTIONS(2491), 1, + sym_jsx_identifier, + ACTIONS(2499), 1, anon_sym_SLASH_GT, - STATE(1049), 1, + STATE(1046), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44169] = 10, - ACTIONS(2479), 1, + [44171] = 10, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, - anon_sym_LBRACE, ACTIONS(2485), 1, - anon_sym_GT, + anon_sym_LBRACE, ACTIONS(2487), 1, - sym_jsx_identifier, + anon_sym_COLON, ACTIONS(2489), 1, - anon_sym_DOT, - ACTIONS(2495), 1, + anon_sym_GT, + ACTIONS(2491), 1, + sym_jsx_identifier, + ACTIONS(2501), 1, anon_sym_SLASH_GT, - STATE(1055), 1, + STATE(1034), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44202] = 10, - ACTIONS(2479), 1, + [44204] = 10, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, - anon_sym_LBRACE, ACTIONS(2485), 1, + anon_sym_LBRACE, + ACTIONS(2489), 1, anon_sym_GT, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2489), 1, + ACTIONS(2493), 1, anon_sym_DOT, - ACTIONS(2491), 1, + ACTIONS(2497), 1, anon_sym_SLASH_GT, - STATE(1051), 1, + STATE(1055), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44235] = 10, - ACTIONS(2479), 1, + [44237] = 10, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, - anon_sym_LBRACE, ACTIONS(2485), 1, - anon_sym_GT, + anon_sym_LBRACE, ACTIONS(2487), 1, - sym_jsx_identifier, + anon_sym_COLON, ACTIONS(2489), 1, - anon_sym_DOT, + anon_sym_GT, + ACTIONS(2491), 1, + sym_jsx_identifier, ACTIONS(2497), 1, anon_sym_SLASH_GT, - STATE(1045), 1, + STATE(1043), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44268] = 9, - ACTIONS(2479), 1, + [44270] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, - anon_sym_LBRACE, ACTIONS(2485), 1, + anon_sym_LBRACE, + ACTIONS(2489), 1, anon_sym_GT, - ACTIONS(2487), 1, - sym_jsx_identifier, ACTIONS(2491), 1, + sym_jsx_identifier, + ACTIONS(2501), 1, anon_sym_SLASH_GT, - STATE(1054), 1, + STATE(1049), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44298] = 8, - ACTIONS(2499), 1, + [44300] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2502), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2507), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - STATE(1034), 1, + ACTIONS(2503), 1, + anon_sym_GT, + ACTIONS(2505), 1, + anon_sym_SLASH_GT, + STATE(1038), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2505), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44326] = 9, - ACTIONS(2479), 1, + [44330] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2510), 1, + ACTIONS(2507), 1, anon_sym_GT, - ACTIONS(2512), 1, + ACTIONS(2509), 1, anon_sym_SLASH_GT, - STATE(1034), 1, + STATE(1038), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44356] = 9, - ACTIONS(2479), 1, + [44360] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, - sym_jsx_identifier, - ACTIONS(2514), 1, + ACTIONS(2489), 1, anon_sym_GT, - ACTIONS(2516), 1, + ACTIONS(2491), 1, + sym_jsx_identifier, + ACTIONS(2499), 1, anon_sym_SLASH_GT, - STATE(1034), 1, + STATE(1040), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44386] = 9, - ACTIONS(2479), 1, + [44390] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2518), 1, + ACTIONS(2507), 1, anon_sym_GT, - ACTIONS(2520), 1, + ACTIONS(2511), 1, anon_sym_SLASH_GT, - STATE(1034), 1, + STATE(1038), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44416] = 9, - ACTIONS(2479), 1, + [44420] = 8, + ACTIONS(2513), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2516), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2521), 1, sym_jsx_identifier, - ACTIONS(2510), 1, - anon_sym_GT, - ACTIONS(2522), 1, - anon_sym_SLASH_GT, - STATE(1034), 1, + STATE(1038), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + ACTIONS(2519), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44446] = 9, - ACTIONS(2479), 1, + [44448] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, ACTIONS(2524), 1, anon_sym_GT, ACTIONS(2526), 1, anon_sym_SLASH_GT, - STATE(1034), 1, + STATE(1038), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44476] = 7, - ACTIONS(2481), 1, - anon_sym_LBRACE, - ACTIONS(2528), 1, - anon_sym_LT, - ACTIONS(2530), 1, - anon_sym_DQUOTE, - ACTIONS(2532), 1, - anon_sym_SQUOTE, - STATE(1018), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1179), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [44502] = 9, - ACTIONS(2479), 1, + [44478] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2524), 1, + ACTIONS(2528), 1, anon_sym_GT, - ACTIONS(2534), 1, + ACTIONS(2530), 1, anon_sym_SLASH_GT, - STATE(1034), 1, + STATE(1038), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44532] = 9, - ACTIONS(2479), 1, + [44508] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2510), 1, + ACTIONS(2528), 1, anon_sym_GT, - ACTIONS(2536), 1, + ACTIONS(2532), 1, anon_sym_SLASH_GT, - STATE(1034), 1, + STATE(1038), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44562] = 9, - ACTIONS(2479), 1, - sym_identifier, - ACTIONS(2481), 1, + [44538] = 7, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, - sym_jsx_identifier, - ACTIONS(2524), 1, - anon_sym_GT, + ACTIONS(2534), 1, + anon_sym_LT, + ACTIONS(2536), 1, + anon_sym_DQUOTE, ACTIONS(2538), 1, - anon_sym_SLASH_GT, - STATE(1034), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, - sym_jsx_namespace_name, + anon_sym_SQUOTE, + STATE(1012), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1151), 4, + sym_jsx_element, sym_jsx_expression, - sym_jsx_attribute, - [44592] = 9, - ACTIONS(2479), 1, + sym_jsx_self_closing_element, + sym__jsx_string, + [44564] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, - anon_sym_LBRACE, ACTIONS(2485), 1, - anon_sym_GT, - ACTIONS(2487), 1, + anon_sym_LBRACE, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2493), 1, + ACTIONS(2503), 1, + anon_sym_GT, + ACTIONS(2540), 1, anon_sym_SLASH_GT, - STATE(1037), 1, + STATE(1038), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44622] = 9, - ACTIONS(2479), 1, + [44594] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2514), 1, + ACTIONS(2507), 1, anon_sym_GT, - ACTIONS(2540), 1, + ACTIONS(2542), 1, anon_sym_SLASH_GT, - STATE(1034), 1, + STATE(1038), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44652] = 9, - ACTIONS(2479), 1, + [44624] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, - anon_sym_LBRACE, ACTIONS(2485), 1, + anon_sym_LBRACE, + ACTIONS(2489), 1, anon_sym_GT, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2495), 1, + ACTIONS(2497), 1, anon_sym_SLASH_GT, STATE(1052), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44682] = 9, - ACTIONS(2479), 1, + [44654] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2518), 1, + ACTIONS(2503), 1, anon_sym_GT, - ACTIONS(2542), 1, + ACTIONS(2544), 1, anon_sym_SLASH_GT, - STATE(1034), 1, + STATE(1038), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44712] = 9, - ACTIONS(2479), 1, + [44684] = 7, + ACTIONS(2485), 1, + anon_sym_LBRACE, + ACTIONS(2534), 1, + anon_sym_LT, + ACTIONS(2536), 1, + anon_sym_DQUOTE, + ACTIONS(2538), 1, + anon_sym_SQUOTE, + STATE(1012), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1154), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [44710] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, - sym_jsx_identifier, - ACTIONS(2510), 1, + ACTIONS(2489), 1, anon_sym_GT, - ACTIONS(2544), 1, + ACTIONS(2491), 1, + sym_jsx_identifier, + ACTIONS(2495), 1, anon_sym_SLASH_GT, - STATE(1034), 1, + STATE(1041), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44742] = 9, - ACTIONS(2479), 1, + [44740] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2524), 1, + ACTIONS(2528), 1, anon_sym_GT, ACTIONS(2546), 1, anon_sym_SLASH_GT, - STATE(1034), 1, + STATE(1038), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44772] = 7, - ACTIONS(2481), 1, - anon_sym_LBRACE, - ACTIONS(2528), 1, - anon_sym_LT, - ACTIONS(2530), 1, - anon_sym_DQUOTE, - ACTIONS(2532), 1, - anon_sym_SQUOTE, - STATE(1018), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1178), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [44798] = 9, - ACTIONS(2479), 1, + [44770] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2514), 1, + ACTIONS(2524), 1, anon_sym_GT, ACTIONS(2548), 1, anon_sym_SLASH_GT, - STATE(1034), 1, + STATE(1038), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44828] = 9, - ACTIONS(2479), 1, + [44800] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2518), 1, + ACTIONS(2503), 1, anon_sym_GT, ACTIONS(2550), 1, anon_sym_SLASH_GT, - STATE(1034), 1, + STATE(1038), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44858] = 9, - ACTIONS(2479), 1, + [44830] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, - anon_sym_LBRACE, ACTIONS(2485), 1, - anon_sym_GT, - ACTIONS(2487), 1, + anon_sym_LBRACE, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2497), 1, + ACTIONS(2528), 1, + anon_sym_GT, + ACTIONS(2552), 1, anon_sym_SLASH_GT, - STATE(1047), 1, + STATE(1038), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44888] = 9, - ACTIONS(2479), 1, + [44860] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2518), 1, + ACTIONS(2524), 1, anon_sym_GT, - ACTIONS(2552), 1, + ACTIONS(2554), 1, anon_sym_SLASH_GT, - STATE(1034), 1, + STATE(1038), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44918] = 9, - ACTIONS(2479), 1, + [44890] = 9, + ACTIONS(2483), 1, sym_identifier, - ACTIONS(2481), 1, + ACTIONS(2485), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2514), 1, + ACTIONS(2507), 1, anon_sym_GT, - ACTIONS(2554), 1, + ACTIONS(2556), 1, anon_sym_SLASH_GT, - STATE(1034), 1, + STATE(1038), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1113), 1, + STATE(1083), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1152), 2, + STATE(1170), 2, sym_jsx_expression, sym_jsx_attribute, - [44948] = 8, - ACTIONS(857), 1, - anon_sym_DQUOTE, - ACTIONS(859), 1, - anon_sym_SQUOTE, - ACTIONS(2556), 1, + [44920] = 9, + ACTIONS(2483), 1, sym_identifier, + ACTIONS(2485), 1, + anon_sym_LBRACE, + ACTIONS(2491), 1, + sym_jsx_identifier, + ACTIONS(2524), 1, + anon_sym_GT, ACTIONS(2558), 1, - anon_sym_COMMA, - ACTIONS(2560), 1, - anon_sym_RBRACE, - STATE(1280), 1, - sym_export_specifier, + anon_sym_SLASH_GT, + STATE(1038), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1083), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1281), 2, - sym__module_export_name, - sym_string, - [44975] = 8, - ACTIONS(857), 1, + STATE(1170), 2, + sym_jsx_expression, + sym_jsx_attribute, + [44950] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2562), 1, + ACTIONS(2560), 1, sym_identifier, - ACTIONS(2564), 1, + ACTIONS(2562), 1, anon_sym_COMMA, - ACTIONS(2566), 1, + ACTIONS(2564), 1, anon_sym_RBRACE, - STATE(1324), 1, + STATE(1279), 1, sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1653), 2, + STATE(1626), 2, sym__module_export_name, sym_string, - [45002] = 7, - ACTIONS(857), 1, + [44977] = 8, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2556), 1, + ACTIONS(2566), 1, sym_identifier, ACTIONS(2568), 1, + anon_sym_COMMA, + ACTIONS(2570), 1, anon_sym_RBRACE, - STATE(1393), 1, + STATE(1351), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1281), 2, + STATE(1344), 2, sym__module_export_name, sym_string, - [45026] = 6, - ACTIONS(912), 1, + [45004] = 5, + ACTIONS(2576), 1, + anon_sym_EQ, + STATE(1183), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2574), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(2572), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [45024] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(2089), 1, + anon_sym_EQ, + ACTIONS(2095), 1, + anon_sym_RBRACE, + STATE(1300), 1, + aux_sym_object_pattern_repeat1, + STATE(1301), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2087), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [45048] = 6, + ACTIONS(931), 1, anon_sym_LBRACE, - ACTIONS(914), 1, + ACTIONS(933), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2578), 1, sym_identifier, - STATE(1197), 1, + STATE(1192), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1177), 3, + STATE(1149), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [45048] = 2, + [45070] = 7, + ACTIONS(863), 1, + anon_sym_DQUOTE, + ACTIONS(865), 1, + anon_sym_SQUOTE, + ACTIONS(2566), 1, + sym_identifier, + ACTIONS(2580), 1, + anon_sym_RBRACE, + STATE(1403), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2572), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - anon_sym_RBRACK, - [45062] = 6, - ACTIONS(912), 1, + STATE(1344), 2, + sym__module_export_name, + sym_string, + [45094] = 6, + ACTIONS(931), 1, anon_sym_LBRACE, - ACTIONS(914), 1, + ACTIONS(933), 1, anon_sym_LBRACK, - ACTIONS(2570), 1, + ACTIONS(2578), 1, sym_identifier, - STATE(1312), 1, + STATE(1187), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1177), 3, + STATE(1149), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [45084] = 6, - ACTIONS(912), 1, + [45116] = 5, + ACTIONS(2487), 1, + anon_sym_COLON, + ACTIONS(2582), 1, + sym_identifier, + ACTIONS(2586), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2584), 4, anon_sym_LBRACE, - ACTIONS(914), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [45136] = 7, + ACTIONS(863), 1, + anon_sym_DQUOTE, + ACTIONS(865), 1, + anon_sym_SQUOTE, + ACTIONS(2566), 1, sym_identifier, - STATE(1197), 1, - sym_variable_declarator, + ACTIONS(2588), 1, + anon_sym_RBRACE, + STATE(1403), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1078), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [45106] = 7, + STATE(1344), 2, + sym__module_export_name, + sym_string, + [45160] = 7, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(835), 1, + ACTIONS(811), 1, anon_sym_RBRACE, ACTIONS(2089), 1, anon_sym_EQ, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1340), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -73348,11 +73412,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - [45130] = 2, + [45184] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2576), 7, + ACTIONS(2590), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -73360,77 +73424,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [45144] = 6, - ACTIONS(912), 1, - anon_sym_LBRACE, - ACTIONS(914), 1, - anon_sym_LBRACK, - ACTIONS(2578), 1, - sym_identifier, - STATE(1256), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1079), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [45166] = 6, - ACTIONS(912), 1, - anon_sym_LBRACE, - ACTIONS(914), 1, - anon_sym_LBRACK, - ACTIONS(2570), 1, - sym_identifier, - STATE(1256), 1, - sym_variable_declarator, + [45198] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1177), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [45188] = 7, - ACTIONS(103), 1, + ACTIONS(2592), 7, anon_sym_COMMA, - ACTIONS(809), 1, anon_sym_RBRACE, - ACTIONS(2089), 1, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_EQ, - STATE(1307), 1, - aux_sym_object_pattern_repeat1, - STATE(1318), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2087), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45212] = 7, - ACTIONS(857), 1, - anon_sym_DQUOTE, - ACTIONS(859), 1, - anon_sym_SQUOTE, - ACTIONS(2562), 1, - sym_identifier, - ACTIONS(2580), 1, - anon_sym_RBRACE, - STATE(1488), 1, - sym_import_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1653), 2, - sym__module_export_name, - sym_string, - [45236] = 2, + anon_sym_RBRACK, + [45212] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2582), 7, + ACTIONS(2594), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -73438,16 +73448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [45250] = 7, + [45226] = 7, ACTIONS(103), 1, anon_sym_COMMA, ACTIONS(2089), 1, anon_sym_EQ, ACTIONS(2091), 1, anon_sym_RBRACE, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1340), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -73455,65 +73465,50 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - [45274] = 7, + [45250] = 7, ACTIONS(103), 1, anon_sym_COMMA, ACTIONS(2089), 1, anon_sym_EQ, ACTIONS(2093), 1, anon_sym_RBRACE, - STATE(1305), 1, - aux_sym_object_repeat1, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, + STATE(1340), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - [45298] = 7, - ACTIONS(857), 1, + [45274] = 7, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2556), 1, + ACTIONS(2560), 1, sym_identifier, - ACTIONS(2584), 1, + ACTIONS(2596), 1, anon_sym_RBRACE, - STATE(1393), 1, - sym_export_specifier, + STATE(1376), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1281), 2, + STATE(1626), 2, sym__module_export_name, sym_string, - [45322] = 5, - ACTIONS(2483), 1, - anon_sym_COLON, - ACTIONS(2586), 1, - sym_identifier, - ACTIONS(2590), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2588), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [45342] = 7, + [45298] = 7, ACTIONS(103), 1, anon_sym_COMMA, ACTIONS(2089), 1, anon_sym_EQ, - ACTIONS(2095), 1, + ACTIONS(2097), 1, anon_sym_RBRACE, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1340), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -73521,16 +73516,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - [45366] = 7, + [45322] = 7, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(2085), 1, + ACTIONS(837), 1, anon_sym_RBRACE, ACTIONS(2089), 1, anon_sym_EQ, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, - STATE(1318), 1, + STATE(1301), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -73538,11 +73533,43 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, + [45346] = 5, + ACTIONS(2598), 1, + anon_sym_EQ, + STATE(1270), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2574), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(2572), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [45366] = 7, + ACTIONS(863), 1, + anon_sym_DQUOTE, + ACTIONS(865), 1, + anon_sym_SQUOTE, + ACTIONS(2560), 1, + sym_identifier, + ACTIONS(2600), 1, + anon_sym_RBRACE, + STATE(1376), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1626), 2, + sym__module_export_name, + sym_string, [45390] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2592), 7, + ACTIONS(2602), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -73553,72 +73580,73 @@ static const uint16_t ts_small_parse_table[] = { [45404] = 7, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(837), 1, + ACTIONS(839), 1, anon_sym_RBRACE, ACTIONS(2089), 1, anon_sym_EQ, - STATE(1305), 1, - aux_sym_object_repeat1, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, + STATE(1340), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - [45428] = 5, - ACTIONS(2598), 1, - anon_sym_EQ, - STATE(1175), 1, - sym__initializer, + [45428] = 6, + ACTIONS(931), 1, + anon_sym_LBRACE, + ACTIONS(933), 1, + anon_sym_LBRACK, + ACTIONS(2604), 1, + sym_identifier, + STATE(1187), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2596), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(2594), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [45448] = 5, - ACTIONS(2600), 1, - anon_sym_EQ, - STATE(1274), 1, - sym__initializer, + STATE(1074), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [45450] = 6, + ACTIONS(931), 1, + anon_sym_LBRACE, + ACTIONS(933), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, + sym_identifier, + STATE(1309), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2596), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(2594), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [45468] = 7, - ACTIONS(857), 1, - anon_sym_DQUOTE, - ACTIONS(859), 1, - anon_sym_SQUOTE, - ACTIONS(2562), 1, + STATE(1149), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [45472] = 6, + ACTIONS(931), 1, + anon_sym_LBRACE, + ACTIONS(933), 1, + anon_sym_LBRACK, + ACTIONS(2606), 1, sym_identifier, - ACTIONS(2602), 1, - anon_sym_RBRACE, - STATE(1488), 1, - sym_import_specifier, + STATE(1192), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1653), 2, - sym__module_export_name, - sym_string, - [45492] = 2, + STATE(1058), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [45494] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2604), 7, + ACTIONS(2608), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -73626,481 +73654,405 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [45506] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1427), 6, + [45508] = 5, + ACTIONS(1222), 1, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT, - anon_sym_LT_SLASH, - [45521] = 3, - ACTIONS(3), 1, + ACTIONS(2610), 1, + sym_identifier, + ACTIONS(2612), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + STATE(1388), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [45527] = 4, + ACTIONS(2614), 1, + sym_identifier, + ACTIONS(2618), 1, + anon_sym_EQ, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2606), 6, + sym_comment, + ACTIONS(2616), 4, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT, - anon_sym_LT_SLASH, - [45536] = 5, - ACTIONS(2610), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [45544] = 5, + ACTIONS(2622), 1, anon_sym_BQUOTE, - ACTIONS(2612), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2608), 2, + ACTIONS(2620), 2, sym__template_chars, sym_escape_sequence, - STATE(1093), 2, + STATE(1132), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [45555] = 6, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(1310), 1, - anon_sym_DOT, - ACTIONS(2614), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(509), 2, - sym_template_string, - sym_arguments, - [45576] = 2, - ACTIONS(5), 2, - sym_html_comment, + [45563] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1703), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [45589] = 2, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - ACTIONS(1699), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [45602] = 3, + ACTIONS(1555), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [45578] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1509), 6, + ACTIONS(1555), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45617] = 5, - ACTIONS(2612), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2618), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2616), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1121), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [45636] = 3, + [45593] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2620), 6, + ACTIONS(1555), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45651] = 3, + [45608] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2606), 6, + ACTIONS(1555), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45666] = 3, + [45623] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2606), 6, + ACTIONS(2626), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45681] = 5, - ACTIONS(2612), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2624), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2622), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1118), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [45700] = 5, - ACTIONS(2626), 1, - anon_sym_default, + [45638] = 5, ACTIONS(2628), 1, + anon_sym_default, + ACTIONS(2631), 1, anon_sym_RBRACE, - ACTIONS(2630), 1, + ACTIONS(2633), 1, anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1119), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [45719] = 6, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1391), 1, - anon_sym_LPAREN, - ACTIONS(1395), 1, - anon_sym_DOT, - ACTIONS(2632), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(670), 2, - sym_template_string, - sym_arguments, - [45740] = 3, + STATE(1090), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [45657] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1535), 6, + ACTIONS(1439), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45755] = 3, + [45672] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1535), 6, + ACTIONS(2636), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45770] = 3, + [45687] = 6, + ACTIONS(2598), 1, + anon_sym_EQ, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1402), 1, + sym__initializer, + STATE(1567), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2640), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [45708] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1535), 6, + ACTIONS(2642), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45785] = 6, - ACTIONS(2600), 1, - anon_sym_EQ, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1551), 1, - sym_formal_parameters, - STATE(1557), 1, - sym__initializer, + [45723] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2636), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [45806] = 6, - ACTIONS(2600), 1, + ACTIONS(1367), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COLON, + [45736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2644), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [45751] = 6, + ACTIONS(2598), 1, anon_sym_EQ, - ACTIONS(2634), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1552), 1, - sym_formal_parameters, - STATE(1559), 1, + STATE(1401), 1, sym__initializer, + STATE(1569), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2638), 2, + ACTIONS(2646), 2, sym__automatic_semicolon, anon_sym_SEMI, - [45827] = 3, + [45772] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1535), 6, + ACTIONS(2648), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45842] = 3, + [45787] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1505), 6, + ACTIONS(2648), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45857] = 3, + [45802] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1567), 6, + ACTIONS(2648), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45872] = 3, - ACTIONS(2640), 1, - sym_identifier, + [45817] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2642), 5, - anon_sym_LBRACE, + ACTIONS(2602), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, anon_sym_EQ, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [45887] = 6, - ACTIONS(857), 1, - anon_sym_DQUOTE, - ACTIONS(859), 1, - anon_sym_SQUOTE, - ACTIONS(2562), 1, - sym_identifier, - STATE(1488), 1, - sym_import_specifier, + [45830] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1653), 2, - sym__module_export_name, - sym_string, - [45908] = 3, - ACTIONS(2644), 1, + ACTIONS(1407), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COLON, + [45843] = 3, + ACTIONS(2650), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2646), 5, + ACTIONS(2652), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_DOT, anon_sym_SLASH_GT, - [45923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2648), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT, - anon_sym_LT_SLASH, - [45938] = 2, + [45858] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1701), 6, + ACTIONS(2594), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, - [45951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2650), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT, - anon_sym_LT_SLASH, - [45966] = 4, - ACTIONS(1691), 1, + [45871] = 4, + ACTIONS(1693), 1, anon_sym_COMMA, - STATE(1123), 1, + STATE(1115), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2652), 4, + ACTIONS(2654), 4, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [45983] = 3, + [45888] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2654), 6, + ACTIONS(2648), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45998] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1589), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, + [45903] = 6, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1310), 1, anon_sym_LPAREN, - anon_sym_COLON, - [46011] = 4, + ACTIONS(1314), 1, + anon_sym_DOT, ACTIONS(2656), 1, - sym_identifier, - ACTIONS(2660), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2658), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46028] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2604), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [46041] = 6, - ACTIONS(2600), 1, - anon_sym_EQ, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1439), 1, - sym_formal_parameters, - STATE(1530), 1, - sym__initializer, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2662), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46062] = 3, + STATE(542), 2, + sym_template_string, + sym_arguments, + [45924] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2606), 6, + ACTIONS(1419), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [46077] = 2, + [45939] = 5, + ACTIONS(2624), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2658), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2582), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [46090] = 5, - ACTIONS(2667), 1, - anon_sym_BQUOTE, - ACTIONS(2669), 1, + ACTIONS(2620), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1132), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [45958] = 5, + ACTIONS(2624), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2662), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2664), 2, + ACTIONS(2660), 2, sym__template_chars, sym_escape_sequence, - STATE(1118), 2, + STATE(1109), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [46109] = 5, - ACTIONS(2626), 1, + [45977] = 6, + ACTIONS(863), 1, + anon_sym_DQUOTE, + ACTIONS(865), 1, + anon_sym_SQUOTE, + ACTIONS(2566), 1, + sym_identifier, + STATE(1403), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1344), 2, + sym__module_export_name, + sym_string, + [45998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2664), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [46013] = 5, + ACTIONS(2666), 1, anon_sym_default, - ACTIONS(2630), 1, - anon_sym_case, - ACTIONS(2672), 1, + ACTIONS(2668), 1, anon_sym_RBRACE, + ACTIONS(2670), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -74108,76 +74060,149 @@ static const uint16_t ts_small_parse_table[] = { sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [46128] = 5, - ACTIONS(1240), 1, - anon_sym_LBRACE, - ACTIONS(2674), 1, + [46032] = 3, + ACTIONS(2672), 1, sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2674), 5, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46047] = 4, ACTIONS(2676), 1, + anon_sym_COMMA, + STATE(1115), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1541), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [46064] = 5, + ACTIONS(1222), 1, + anon_sym_LBRACE, + ACTIONS(2612), 1, anon_sym_LBRACK, + ACTIONS(2679), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1231), 3, + STATE(1638), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [46147] = 5, - ACTIONS(2612), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2678), 1, + [46083] = 6, + ACTIONS(83), 1, anon_sym_BQUOTE, + ACTIONS(1443), 1, + anon_sym_LPAREN, + ACTIONS(1447), 1, + anon_sym_DOT, + ACTIONS(2681), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2622), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1118), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [46166] = 5, - ACTIONS(1240), 1, + STATE(719), 2, + sym_template_string, + sym_arguments, + [46104] = 6, + ACTIONS(2598), 1, + anon_sym_EQ, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1462), 1, + sym__initializer, + STATE(1524), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2683), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [46125] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1748), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + [46138] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1708), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + [46151] = 5, + ACTIONS(1222), 1, anon_sym_LBRACE, - ACTIONS(2676), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2680), 1, + ACTIONS(2685), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1539), 3, + STATE(1194), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [46185] = 4, - ACTIONS(2682), 1, - anon_sym_COMMA, - STATE(1123), 1, - aux_sym_sequence_expression_repeat1, + [46170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1501), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [46185] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1499), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [46202] = 5, - ACTIONS(2685), 1, + ACTIONS(2590), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_EQ, + [46198] = 5, + ACTIONS(2666), 1, anon_sym_default, - ACTIONS(2688), 1, - anon_sym_RBRACE, - ACTIONS(2690), 1, + ACTIONS(2670), 1, anon_sym_case, + ACTIONS(2687), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1124), 3, + STATE(1090), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [46221] = 2, + [46217] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -74188,5040 +74213,5066 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_EQ, - [46234] = 2, + [46230] = 6, + ACTIONS(2598), 1, + anon_sym_EQ, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1417), 1, + sym__initializer, + STATE(1589), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2576), 6, + ACTIONS(2689), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_EQ, - [46247] = 2, + [46251] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2572), 6, + ACTIONS(2608), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_in, anon_sym_of, anon_sym_SEMI, anon_sym_EQ, - [46260] = 6, - ACTIONS(2600), 1, - anon_sym_EQ, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1458), 1, - sym__initializer, - STATE(1580), 1, - sym_formal_parameters, + [46264] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2693), 2, + ACTIONS(1753), 6, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [46281] = 3, + anon_sym_EQ, + [46277] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2695), 6, + ACTIONS(1571), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [46296] = 3, + [46292] = 6, + ACTIONS(863), 1, + anon_sym_DQUOTE, + ACTIONS(865), 1, + anon_sym_SQUOTE, + ACTIONS(2560), 1, + sym_identifier, + STATE(1376), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1626), 2, + sym__module_export_name, + sym_string, + [46313] = 5, + ACTIONS(2624), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2693), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2691), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1084), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [46332] = 5, + ACTIONS(2698), 1, + anon_sym_BQUOTE, + ACTIONS(2700), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2695), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1132), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [46351] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1455), 6, + ACTIONS(1357), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [46311] = 6, - ACTIONS(857), 1, - anon_sym_DQUOTE, - ACTIONS(859), 1, - anon_sym_SQUOTE, - ACTIONS(2556), 1, + [46366] = 3, + ACTIONS(1555), 1, sym_identifier, - STATE(1393), 1, - sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1281), 2, - sym__module_export_name, - sym_string, - [46332] = 5, - ACTIONS(1240), 1, + ACTIONS(1557), 4, anon_sym_LBRACE, - ACTIONS(2676), 1, - anon_sym_LBRACK, - ACTIONS(2697), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46380] = 6, + ACTIONS(2703), 1, sym_identifier, + ACTIONS(2705), 1, + anon_sym_GT, + ACTIONS(2707), 1, + sym_jsx_identifier, + STATE(1359), 1, + sym_nested_identifier, + STATE(1647), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1625), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [46351] = 2, + [46400] = 5, + ACTIONS(2045), 1, + anon_sym_COMMA, + ACTIONS(2115), 1, + anon_sym_RBRACE, + STATE(1271), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1585), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, + ACTIONS(2087), 2, anon_sym_LPAREN, anon_sym_COLON, - [46364] = 3, - ACTIONS(2648), 1, + [46418] = 6, + ACTIONS(2709), 1, sym_identifier, + ACTIONS(2711), 1, + anon_sym_GT, + ACTIONS(2713), 1, + sym_jsx_identifier, + STATE(1031), 1, + sym_nested_identifier, + STATE(1045), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2699), 4, - anon_sym_LBRACE, + [46438] = 4, + ACTIONS(2089), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2087), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2112), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [46454] = 3, + ACTIONS(2715), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1295), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [46468] = 6, + ACTIONS(2711), 1, anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46378] = 6, - ACTIONS(2701), 1, + ACTIONS(2717), 1, sym_identifier, - ACTIONS(2703), 1, - anon_sym_LBRACE, - ACTIONS(2705), 1, - anon_sym_extends, - STATE(507), 1, - sym_class_body, - STATE(1395), 1, - sym_class_heritage, + ACTIONS(2719), 1, + sym_jsx_identifier, + STATE(1026), 1, + sym_nested_identifier, + STATE(1036), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46398] = 6, - ACTIONS(2705), 1, - anon_sym_extends, - ACTIONS(2707), 1, + [46488] = 6, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2721), 1, + anon_sym_export, + ACTIONS(2723), 1, + anon_sym_class, + STATE(936), 1, + aux_sym_export_statement_repeat1, + STATE(977), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46508] = 3, + ACTIONS(2725), 1, sym_identifier, - ACTIONS(2709), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2727), 4, anon_sym_LBRACE, - STATE(716), 1, - sym_class_body, - STATE(1534), 1, - sym_class_heritage, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46522] = 6, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2729), 1, + anon_sym_export, + ACTIONS(2731), 1, + anon_sym_class, + STATE(936), 1, + aux_sym_export_statement_repeat1, + STATE(977), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46418] = 3, - ACTIONS(2711), 1, + [46542] = 3, + ACTIONS(2733), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2713), 4, + ACTIONS(2735), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46432] = 6, - ACTIONS(2703), 1, + [46556] = 6, + ACTIONS(2737), 1, + sym_identifier, + ACTIONS(2739), 1, anon_sym_LBRACE, - ACTIONS(2705), 1, + ACTIONS(2741), 1, anon_sym_extends, - ACTIONS(2715), 1, - sym_identifier, - STATE(553), 1, + STATE(673), 1, sym_class_body, - STATE(1541), 1, + STATE(1476), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46452] = 3, - ACTIONS(2717), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1284), 4, + [46576] = 6, + ACTIONS(2061), 1, anon_sym_COMMA, + ACTIONS(2087), 1, + anon_sym_COLON, + ACTIONS(2089), 1, + anon_sym_EQ, + ACTIONS(2743), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46466] = 6, - ACTIONS(2705), 1, - anon_sym_extends, - ACTIONS(2709), 1, - anon_sym_LBRACE, - ACTIONS(2720), 1, - sym_identifier, - STATE(754), 1, - sym_class_body, - STATE(1596), 1, - sym_class_heritage, + STATE(1332), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46486] = 5, - ACTIONS(857), 1, + [46596] = 5, + ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(859), 1, + ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2722), 1, + ACTIONS(2745), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1686), 2, + STATE(1635), 2, sym__module_export_name, sym_string, - [46504] = 2, + [46614] = 6, + ACTIONS(2739), 1, + anon_sym_LBRACE, + ACTIONS(2741), 1, + anon_sym_extends, + ACTIONS(2747), 1, + sym_identifier, + STATE(673), 1, + sym_class_body, + STATE(1476), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1284), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + [46634] = 4, + ACTIONS(2598), 1, anon_sym_EQ, - anon_sym_RBRACK, - [46516] = 2, + STATE(1270), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1585), 5, + ACTIONS(2572), 3, sym__automatic_semicolon, - anon_sym_with, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_EQ, - [46528] = 6, - ACTIONS(2724), 1, - sym_identifier, - ACTIONS(2726), 1, - anon_sym_GT, - ACTIONS(2728), 1, - sym_jsx_identifier, - STATE(1378), 1, - sym_nested_identifier, - STATE(1634), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46548] = 3, - ACTIONS(2730), 1, + [46650] = 3, + ACTIONS(2626), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2732), 4, + ACTIONS(2749), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46562] = 6, - ACTIONS(2734), 1, + [46664] = 3, + ACTIONS(2751), 1, sym_identifier, - ACTIONS(2736), 1, - anon_sym_GT, - ACTIONS(2738), 1, - sym_jsx_identifier, - STATE(1566), 1, - sym_nested_identifier, - STATE(1643), 1, - sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46582] = 5, - ACTIONS(857), 1, - anon_sym_DQUOTE, - ACTIONS(859), 1, - anon_sym_SQUOTE, - ACTIONS(2740), 1, + ACTIONS(2753), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46678] = 6, + ACTIONS(2739), 1, + anon_sym_LBRACE, + ACTIONS(2741), 1, + anon_sym_extends, + ACTIONS(2755), 1, sym_identifier, + STATE(673), 1, + sym_class_body, + STATE(1476), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1397), 2, - sym__module_export_name, - sym_string, - [46600] = 4, - ACTIONS(2089), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2087), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2128), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [46616] = 6, - ACTIONS(2742), 1, + [46698] = 6, + ACTIONS(2757), 1, sym_identifier, - ACTIONS(2744), 1, + ACTIONS(2759), 1, anon_sym_GT, - ACTIONS(2746), 1, + ACTIONS(2761), 1, sym_jsx_identifier, - STATE(1401), 1, + STATE(1479), 1, sym_nested_identifier, - STATE(1617), 1, + STATE(1634), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46636] = 3, - ACTIONS(1427), 1, + [46718] = 3, + ACTIONS(2763), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1429), 4, + ACTIONS(2765), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46650] = 3, - ACTIONS(1455), 1, + [46732] = 6, + ACTIONS(1443), 1, + anon_sym_LPAREN, + ACTIONS(2767), 1, sym_identifier, + ACTIONS(2769), 1, + anon_sym_LBRACK, + ACTIONS(2771), 1, + sym_private_property_identifier, + STATE(658), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1457), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46664] = 3, - ACTIONS(2748), 1, + [46752] = 3, + ACTIONS(1439), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2750), 4, + ACTIONS(1441), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46678] = 3, - ACTIONS(1505), 1, + [46766] = 3, + ACTIONS(2642), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1507), 4, + ACTIONS(2773), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46692] = 3, - ACTIONS(1509), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1511), 4, - anon_sym_LBRACE, + [46780] = 6, + ACTIONS(2711), 1, anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46706] = 6, - ACTIONS(2752), 1, + ACTIONS(2775), 1, sym_identifier, - ACTIONS(2754), 1, - anon_sym_GT, - ACTIONS(2756), 1, + ACTIONS(2777), 1, sym_jsx_identifier, - STATE(1031), 1, + STATE(1025), 1, sym_nested_identifier, STATE(1033), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46726] = 6, - ACTIONS(2705), 1, + [46800] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1407), 5, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [46812] = 6, + ACTIONS(2739), 1, + anon_sym_LBRACE, + ACTIONS(2741), 1, anon_sym_extends, - ACTIONS(2709), 1, + ACTIONS(2779), 1, + sym_identifier, + STATE(684), 1, + sym_class_body, + STATE(1557), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46832] = 6, + ACTIONS(2739), 1, anon_sym_LBRACE, - ACTIONS(2758), 1, + ACTIONS(2741), 1, + anon_sym_extends, + ACTIONS(2781), 1, sym_identifier, - STATE(716), 1, + STATE(684), 1, sym_class_body, - STATE(1534), 1, + STATE(1557), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46746] = 3, - ACTIONS(2760), 1, - anon_sym_EQ, + [46852] = 3, + ACTIONS(1555), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1284), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46760] = 6, - ACTIONS(2705), 1, - anon_sym_extends, - ACTIONS(2709), 1, + ACTIONS(1557), 4, anon_sym_LBRACE, - ACTIONS(2763), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46866] = 6, + ACTIONS(2741), 1, + anon_sym_extends, + ACTIONS(2783), 1, sym_identifier, - STATE(754), 1, + ACTIONS(2785), 1, + anon_sym_LBRACE, + STATE(547), 1, sym_class_body, STATE(1596), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46780] = 3, - ACTIONS(2765), 1, + [46886] = 3, + ACTIONS(2787), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1271), 4, + ACTIONS(1269), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - [46794] = 6, - ACTIONS(1306), 1, - anon_sym_LPAREN, - ACTIONS(2767), 1, - sym_identifier, - ACTIONS(2769), 1, - anon_sym_LBRACK, - ACTIONS(2771), 1, - sym_private_property_identifier, - STATE(547), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46814] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1589), 5, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [46826] = 6, - ACTIONS(2773), 1, + [46900] = 6, + ACTIONS(2739), 1, + anon_sym_LBRACE, + ACTIONS(2741), 1, + anon_sym_extends, + ACTIONS(2790), 1, sym_identifier, - ACTIONS(2775), 1, - anon_sym_GT, - ACTIONS(2777), 1, - sym_jsx_identifier, - STATE(1538), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_jsx_namespace_name, + STATE(684), 1, + sym_class_body, + STATE(1557), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46846] = 3, - ACTIONS(1535), 1, + [46920] = 3, + ACTIONS(1555), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1537), 4, + ACTIONS(1557), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46860] = 3, - ACTIONS(1535), 1, + [46934] = 5, + ACTIONS(863), 1, + anon_sym_DQUOTE, + ACTIONS(865), 1, + anon_sym_SQUOTE, + ACTIONS(2792), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1537), 4, + STATE(1399), 2, + sym__module_export_name, + sym_string, + [46952] = 6, + ACTIONS(2741), 1, + anon_sym_extends, + ACTIONS(2785), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46874] = 3, - ACTIONS(1535), 1, + ACTIONS(2794), 1, sym_identifier, + STATE(573), 1, + sym_class_body, + STATE(1570), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1537), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46888] = 6, - ACTIONS(2754), 1, + [46972] = 6, + ACTIONS(2711), 1, anon_sym_GT, - ACTIONS(2779), 1, + ACTIONS(2796), 1, sym_identifier, - ACTIONS(2781), 1, + ACTIONS(2798), 1, sym_jsx_identifier, - STATE(1030), 1, + STATE(1028), 1, sym_nested_identifier, - STATE(1046), 1, + STATE(1048), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46908] = 5, - ACTIONS(2043), 1, - anon_sym_COMMA, - ACTIONS(2131), 1, - anon_sym_RBRACE, - STATE(1290), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2087), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [46926] = 6, - ACTIONS(2069), 1, - anon_sym_COMMA, - ACTIONS(2087), 1, - anon_sym_COLON, - ACTIONS(2089), 1, - anon_sym_EQ, - ACTIONS(2783), 1, - anon_sym_RBRACE, - STATE(1319), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46946] = 6, - ACTIONS(2754), 1, - anon_sym_GT, - ACTIONS(2785), 1, + [46992] = 3, + ACTIONS(2800), 1, sym_identifier, - ACTIONS(2787), 1, - sym_jsx_identifier, - STATE(1025), 1, - sym_nested_identifier, - STATE(1044), 1, - sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46966] = 6, - ACTIONS(2754), 1, + ACTIONS(2802), 4, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(2789), 1, - sym_identifier, - ACTIONS(2791), 1, sym_jsx_identifier, - STATE(1032), 1, - sym_nested_identifier, - STATE(1053), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46986] = 6, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2793), 1, - anon_sym_export, - ACTIONS(2795), 1, - anon_sym_class, - STATE(939), 1, - aux_sym_export_statement_repeat1, - STATE(981), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, + anon_sym_SLASH_GT, [47006] = 6, - ACTIONS(2069), 1, + ACTIONS(2061), 1, anon_sym_COMMA, ACTIONS(2087), 1, anon_sym_COLON, ACTIONS(2089), 1, anon_sym_EQ, - ACTIONS(2797), 1, + ACTIONS(2804), 1, anon_sym_RBRACE, - STATE(1307), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47026] = 6, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2799), 1, - anon_sym_export, - ACTIONS(2801), 1, - anon_sym_class, - STATE(939), 1, - aux_sym_export_statement_repeat1, - STATE(981), 1, - sym_decorator, + [47026] = 3, + ACTIONS(2806), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47046] = 3, - ACTIONS(2695), 1, + ACTIONS(1269), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47040] = 3, + ACTIONS(1555), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2803), 4, + ACTIONS(1557), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47060] = 4, - ACTIONS(2807), 1, - anon_sym_in, - ACTIONS(2809), 1, - anon_sym_of, + [47054] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2805), 3, + ACTIONS(1367), 5, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_with, + anon_sym_LPAREN, anon_sym_SEMI, - [47076] = 6, - ACTIONS(2705), 1, - anon_sym_extends, - ACTIONS(2709), 1, - anon_sym_LBRACE, - ACTIONS(2811), 1, - sym_identifier, - STATE(754), 1, - sym_class_body, - STATE(1596), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [47096] = 4, - ACTIONS(2600), 1, anon_sym_EQ, - STATE(1274), 1, - sym__initializer, + [47066] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2594), 3, - sym__automatic_semicolon, + ACTIONS(1269), 5, anon_sym_COMMA, - anon_sym_SEMI, - [47112] = 3, - ACTIONS(2813), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_RBRACK, + [47078] = 3, + ACTIONS(1571), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2815), 4, + ACTIONS(1573), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47126] = 3, - ACTIONS(2817), 1, + [47092] = 3, + ACTIONS(1357), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2819), 4, + ACTIONS(1359), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47140] = 3, - ACTIONS(1535), 1, + [47106] = 6, + ACTIONS(2809), 1, + sym_identifier, + ACTIONS(2811), 1, + anon_sym_GT, + ACTIONS(2813), 1, + sym_jsx_identifier, + STATE(1573), 1, + sym_nested_identifier, + STATE(1684), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47126] = 3, + ACTIONS(1419), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1537), 4, + ACTIONS(1421), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47154] = 6, - ACTIONS(2705), 1, - anon_sym_extends, - ACTIONS(2709), 1, - anon_sym_LBRACE, - ACTIONS(2821), 1, - sym_identifier, - STATE(716), 1, - sym_class_body, - STATE(1534), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [47174] = 3, - ACTIONS(1567), 1, + [47140] = 3, + ACTIONS(1501), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1569), 4, + ACTIONS(1503), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47188] = 6, - ACTIONS(1391), 1, + [47154] = 6, + ACTIONS(1310), 1, anon_sym_LPAREN, - ACTIONS(2823), 1, + ACTIONS(2815), 1, sym_identifier, - ACTIONS(2825), 1, + ACTIONS(2817), 1, anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(2819), 1, sym_private_property_identifier, - STATE(745), 1, + STATE(565), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47208] = 2, + [47174] = 6, + ACTIONS(2821), 1, + sym_identifier, + ACTIONS(2823), 1, + anon_sym_GT, + ACTIONS(2825), 1, + sym_jsx_identifier, + STATE(1429), 1, + sym_nested_identifier, + STATE(1642), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47194] = 4, + ACTIONS(2829), 1, + anon_sym_in, + ACTIONS(2831), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2829), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [47219] = 6, + ACTIONS(2827), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [47210] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2831), 1, - sym_html_character_reference, ACTIONS(2833), 1, + sym_html_character_reference, + ACTIONS(2836), 1, anon_sym_DQUOTE, - ACTIONS(2835), 1, + ACTIONS(2838), 1, sym_unescaped_double_jsx_string_fragment, - STATE(1198), 1, + STATE(1184), 1, aux_sym__jsx_string_repeat1, - [47238] = 5, + [47229] = 5, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2795), 1, + ACTIONS(2731), 1, anon_sym_class, - STATE(939), 1, + STATE(936), 1, aux_sym_export_statement_repeat1, - STATE(981), 1, + STATE(977), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47255] = 5, - ACTIONS(3), 1, + [47246] = 3, + ACTIONS(2841), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(2465), 3, + anon_sym_LPAREN, + sym_optional_chain, + anon_sym_BQUOTE, + [47259] = 4, + ACTIONS(2843), 1, + anon_sym_COMMA, + STATE(1251), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2837), 1, - anon_sym_DQUOTE, - STATE(1201), 1, - aux_sym_string_repeat1, - ACTIONS(2839), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [47272] = 5, + sym_comment, + ACTIONS(2845), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47274] = 4, + ACTIONS(1670), 1, + anon_sym_COMMA, + STATE(1242), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2654), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47289] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2837), 1, + ACTIONS(2847), 1, anon_sym_SQUOTE, - STATE(1203), 1, + STATE(1249), 1, aux_sym_string_repeat2, - ACTIONS(2841), 2, + ACTIONS(2849), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [47289] = 5, + [47306] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2723), 1, + anon_sym_class, + STATE(936), 1, + aux_sym_export_statement_repeat1, + STATE(977), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47323] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2843), 1, + ACTIONS(2847), 1, anon_sym_DQUOTE, - STATE(1189), 1, + STATE(1252), 1, aux_sym_string_repeat1, - ACTIONS(2845), 2, + ACTIONS(2851), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [47306] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2848), 1, - anon_sym_SQUOTE, - STATE(1190), 1, - aux_sym_string_repeat2, - ACTIONS(2850), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [47323] = 2, + [47340] = 4, + ACTIONS(2843), 1, + anon_sym_COMMA, + STATE(1250), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [47334] = 2, + ACTIONS(2853), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47355] = 4, + ACTIONS(2855), 1, + anon_sym_with, + STATE(1541), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1699), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(2857), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47370] = 4, + ACTIONS(2859), 1, anon_sym_EQ, - [47345] = 5, - ACTIONS(2634), 1, - anon_sym_LPAREN, - ACTIONS(2853), 1, - sym_identifier, - ACTIONS(2855), 1, - anon_sym_STAR, - STATE(1578), 1, - sym_formal_parameters, + STATE(1453), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47362] = 5, - ACTIONS(2857), 1, + ACTIONS(2574), 2, + anon_sym_in, + anon_sym_of, + [47385] = 5, + ACTIONS(2861), 1, anon_sym_LBRACE, - ACTIONS(2859), 1, + ACTIONS(2863), 1, anon_sym_extends, - STATE(314), 1, + STATE(326), 1, sym_class_body, - STATE(1407), 1, + STATE(1467), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47379] = 5, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2861), 1, - anon_sym_class, - STATE(939), 1, - aux_sym_export_statement_repeat1, - STATE(981), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [47396] = 6, + [47402] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2833), 1, - anon_sym_SQUOTE, - ACTIONS(2863), 1, - sym_html_character_reference, ACTIONS(2865), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(1205), 1, - aux_sym__jsx_string_repeat2, - [47415] = 4, - ACTIONS(2867), 1, - anon_sym_COMMA, - STATE(1241), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, + anon_sym_SQUOTE, + STATE(1189), 1, + aux_sym_string_repeat2, + ACTIONS(2867), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [47419] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(2869), 1, + anon_sym_SQUOTE, + STATE(1249), 1, + aux_sym_string_repeat2, + ACTIONS(2849), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [47436] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47430] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2865), 1, + anon_sym_DQUOTE, + STATE(1191), 1, + aux_sym_string_repeat1, + ACTIONS(2871), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [47453] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2871), 1, + ACTIONS(2873), 1, sym_html_character_reference, - ACTIONS(2874), 1, + ACTIONS(2875), 1, anon_sym_DQUOTE, - ACTIONS(2876), 1, + ACTIONS(2877), 1, sym_unescaped_double_jsx_string_fragment, - STATE(1198), 1, + STATE(1220), 1, aux_sym__jsx_string_repeat1, - [47449] = 5, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2801), 1, - anon_sym_class, - STATE(939), 1, - aux_sym_export_statement_repeat1, - STATE(981), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [47466] = 5, + [47472] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2875), 1, + anon_sym_SQUOTE, ACTIONS(2879), 1, + sym_html_character_reference, + ACTIONS(2881), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1221), 1, + aux_sym__jsx_string_repeat2, + [47491] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2883), 1, anon_sym_DQUOTE, - STATE(1189), 1, + STATE(1206), 1, aux_sym_string_repeat1, - ACTIONS(2881), 2, + ACTIONS(2885), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [47483] = 5, + [47508] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, ACTIONS(2883), 1, + anon_sym_SQUOTE, + STATE(1208), 1, + aux_sym_string_repeat2, + ACTIONS(2887), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [47525] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2869), 1, anon_sym_DQUOTE, - STATE(1189), 1, + STATE(1252), 1, aux_sym_string_repeat1, - ACTIONS(2881), 2, + ACTIONS(2851), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [47500] = 5, - ACTIONS(2634), 1, + [47542] = 5, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(2885), 1, + ACTIONS(2889), 1, sym_identifier, - ACTIONS(2887), 1, + ACTIONS(2891), 1, anon_sym_STAR, - STATE(1442), 1, + STATE(1471), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47517] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2883), 1, - anon_sym_SQUOTE, - STATE(1190), 1, - aux_sym_string_repeat2, - ACTIONS(2889), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [47534] = 4, - ACTIONS(2459), 1, - anon_sym_STAR, - ACTIONS(2461), 1, - anon_sym_LBRACE, + [47559] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1631), 2, - sym_namespace_import, - sym_named_imports, - [47549] = 6, + ACTIONS(2893), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [47570] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2891), 1, - sym_html_character_reference, - ACTIONS(2894), 1, - anon_sym_SQUOTE, - ACTIONS(2896), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(1205), 1, - aux_sym__jsx_string_repeat2, - [47568] = 4, - ACTIONS(2087), 1, - anon_sym_COLON, - ACTIONS(2089), 1, + ACTIONS(2895), 1, + anon_sym_DQUOTE, + STATE(1252), 1, + aux_sym_string_repeat1, + ACTIONS(2851), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [47587] = 5, + ACTIONS(674), 1, + anon_sym_COMMA, + ACTIONS(2897), 1, anon_sym_EQ, + ACTIONS(2899), 1, + anon_sym_RBRACK, + STATE(1317), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2899), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [47583] = 5, + [47604] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2879), 1, + ACTIONS(2895), 1, anon_sym_SQUOTE, - STATE(1190), 1, + STATE(1249), 1, aux_sym_string_repeat2, - ACTIONS(2889), 2, + ACTIONS(2849), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [47600] = 5, - ACTIONS(672), 1, - anon_sym_COMMA, - ACTIONS(2901), 1, + [47621] = 5, + ACTIONS(2897), 1, anon_sym_EQ, + ACTIONS(2901), 1, + anon_sym_COMMA, ACTIONS(2903), 1, - anon_sym_RBRACK, - STATE(1330), 1, - aux_sym_array_pattern_repeat1, + anon_sym_RPAREN, + STATE(1265), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47617] = 4, + [47638] = 5, + ACTIONS(2638), 1, + anon_sym_LPAREN, ACTIONS(2905), 1, - anon_sym_with, - STATE(1570), 1, - sym_import_attribute, + sym_identifier, + ACTIONS(2907), 1, + anon_sym_STAR, + STATE(1492), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47655] = 5, + ACTIONS(2739), 1, + anon_sym_LBRACE, + ACTIONS(2863), 1, + anon_sym_extends, + STATE(681), 1, + sym_class_body, + STATE(1566), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47672] = 3, + ACTIONS(2467), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2465), 3, + anon_sym_LPAREN, + sym_optional_chain, + anon_sym_BQUOTE, + [47685] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2909), 1, + anon_sym_class, + STATE(936), 1, + aux_sym_export_statement_repeat1, + STATE(977), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2907), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47632] = 5, - ACTIONS(2703), 1, + [47702] = 5, + ACTIONS(2785), 1, anon_sym_LBRACE, - ACTIONS(2859), 1, + ACTIONS(2863), 1, anon_sym_extends, - STATE(491), 1, + STATE(511), 1, sym_class_body, - STATE(1536), 1, + STATE(1400), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47649] = 3, - ACTIONS(2909), 1, - anon_sym_EQ, + [47719] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2911), 1, + anon_sym_class, + STATE(936), 1, + aux_sym_export_statement_repeat1, + STATE(977), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1271), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [47662] = 4, - ACTIONS(2867), 1, + [47736] = 4, + ACTIONS(2913), 1, anon_sym_COMMA, - STATE(1224), 1, + STATE(1216), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2911), 2, + ACTIONS(2916), 2, sym__automatic_semicolon, anon_sym_SEMI, - [47677] = 5, - ACTIONS(2634), 1, - anon_sym_LPAREN, - ACTIONS(2913), 1, - sym_identifier, - ACTIONS(2915), 1, - anon_sym_STAR, - STATE(1521), 1, - sym_formal_parameters, + [47751] = 4, + ACTIONS(2918), 1, + anon_sym_from, + STATE(1583), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47694] = 4, - ACTIONS(2917), 1, - anon_sym_COMMA, - STATE(1214), 1, - aux_sym_array_repeat1, + ACTIONS(2920), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47766] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1730), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47709] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2920), 1, - anon_sym_DQUOTE, - STATE(1220), 1, - aux_sym_string_repeat1, - ACTIONS(2922), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [47726] = 5, - ACTIONS(2859), 1, - anon_sym_extends, - ACTIONS(2924), 1, + ACTIONS(2087), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2135), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [47779] = 5, + ACTIONS(2739), 1, anon_sym_LBRACE, - STATE(53), 1, + ACTIONS(2863), 1, + anon_sym_extends, + STATE(659), 1, sym_class_body, - STATE(1438), 1, + STATE(1584), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47743] = 5, + [47796] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2922), 1, + sym_html_character_reference, + ACTIONS(2924), 1, + anon_sym_DQUOTE, + ACTIONS(2926), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1184), 1, + aux_sym__jsx_string_repeat1, + [47815] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2920), 1, + ACTIONS(2924), 1, anon_sym_SQUOTE, - STATE(1221), 1, - aux_sym_string_repeat2, - ACTIONS(2926), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [47760] = 5, - ACTIONS(2634), 1, - anon_sym_LPAREN, ACTIONS(2928), 1, - sym_identifier, + sym_html_character_reference, ACTIONS(2930), 1, - anon_sym_STAR, - STATE(1403), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [47777] = 5, - ACTIONS(2634), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1232), 1, + aux_sym__jsx_string_repeat2, + [47834] = 5, + ACTIONS(2638), 1, anon_sym_LPAREN, ACTIONS(2932), 1, sym_identifier, ACTIONS(2934), 1, anon_sym_STAR, - STATE(1578), 1, + STATE(1601), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47794] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2936), 1, - anon_sym_DQUOTE, - STATE(1189), 1, - aux_sym_string_repeat1, - ACTIONS(2881), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [47811] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [47851] = 3, ACTIONS(2936), 1, - anon_sym_SQUOTE, - STATE(1190), 1, - aux_sym_string_repeat2, - ACTIONS(2889), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [47828] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2938), 1, - anon_sym_DQUOTE, - STATE(1233), 1, - aux_sym_string_repeat1, - ACTIONS(2940), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [47845] = 5, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2942), 1, - anon_sym_class, - STATE(939), 1, - aux_sym_export_statement_repeat1, - STATE(981), 1, - sym_decorator, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47862] = 4, - ACTIONS(2944), 1, + ACTIONS(1295), 3, anon_sym_COMMA, - STATE(1224), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_RBRACE, + anon_sym_RBRACK, + [47864] = 4, + ACTIONS(2087), 1, + anon_sym_COLON, + ACTIONS(2089), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2947), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47877] = 5, - ACTIONS(2709), 1, + ACTIONS(2938), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [47879] = 5, + ACTIONS(2861), 1, anon_sym_LBRACE, - ACTIONS(2859), 1, + ACTIONS(2863), 1, anon_sym_extends, - STATE(717), 1, + STATE(335), 1, sym_class_body, - STATE(1554), 1, + STATE(1390), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47894] = 5, - ACTIONS(2634), 1, + [47896] = 5, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(2949), 1, + ACTIONS(2940), 1, sym_identifier, - ACTIONS(2951), 1, + ACTIONS(2942), 1, anon_sym_STAR, - STATE(1442), 1, + STATE(1601), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47911] = 5, - ACTIONS(2857), 1, - anon_sym_LBRACE, - ACTIONS(2859), 1, - anon_sym_extends, - STATE(332), 1, - sym_class_body, - STATE(1408), 1, - sym_class_heritage, + [47913] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2944), 1, + anon_sym_class, + STATE(936), 1, + aux_sym_export_statement_repeat1, + STATE(977), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47928] = 5, - ACTIONS(2634), 1, - anon_sym_LPAREN, - ACTIONS(2953), 1, - sym_identifier, - ACTIONS(2955), 1, - anon_sym_STAR, - STATE(1578), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, + [47930] = 5, + ACTIONS(3), 1, sym_comment, - [47945] = 5, - ACTIONS(2905), 1, - anon_sym_with, - ACTIONS(2957), 1, - anon_sym_SEMI, - ACTIONS(2959), 1, - sym__automatic_semicolon, - STATE(1494), 1, - sym_import_attribute, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(2946), 1, + anon_sym_DQUOTE, + STATE(1248), 1, + aux_sym_string_repeat1, + ACTIONS(2948), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [47947] = 5, + ACTIONS(3), 1, sym_comment, - [47962] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2946), 1, + anon_sym_SQUOTE, + STATE(1256), 1, + aux_sym_string_repeat2, + ACTIONS(2950), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [47964] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2938), 1, + ACTIONS(2952), 1, anon_sym_SQUOTE, - STATE(1249), 1, + STATE(1197), 1, aux_sym_string_repeat2, - ACTIONS(2961), 2, + ACTIONS(2954), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [47979] = 4, + [47981] = 5, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(2956), 1, + sym_identifier, + ACTIONS(2958), 1, + anon_sym_STAR, + STATE(1601), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47998] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2960), 1, + sym_html_character_reference, ACTIONS(2963), 1, + anon_sym_SQUOTE, + ACTIONS(2965), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1232), 1, + aux_sym__jsx_string_repeat2, + [48017] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1708), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_EQ, - STATE(1391), 1, - sym__initializer, + [48028] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2596), 2, + ACTIONS(1748), 4, + anon_sym_RPAREN, anon_sym_in, anon_sym_of, - [47994] = 2, + anon_sym_EQ, + [48039] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1701), 4, + ACTIONS(1753), 4, anon_sym_RPAREN, anon_sym_in, anon_sym_of, anon_sym_EQ, - [48005] = 5, - ACTIONS(3), 1, + [48050] = 5, + ACTIONS(2739), 1, + anon_sym_LBRACE, + ACTIONS(2863), 1, + anon_sym_extends, + STATE(727), 1, + sym_class_body, + STATE(1528), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [48067] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2965), 1, - anon_sym_DQUOTE, - STATE(1189), 1, - aux_sym_string_repeat1, - ACTIONS(2881), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48022] = 5, + sym_comment, + ACTIONS(1810), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [48078] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2967), 1, + ACTIONS(2952), 1, anon_sym_DQUOTE, - STATE(1200), 1, + STATE(1203), 1, aux_sym_string_repeat1, - ACTIONS(2969), 2, + ACTIONS(2968), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [48039] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2971), 1, - sym_html_character_reference, - ACTIONS(2973), 1, - anon_sym_DQUOTE, - ACTIONS(2975), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(1185), 1, - aux_sym__jsx_string_repeat1, - [48058] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2973), 1, - anon_sym_SQUOTE, - ACTIONS(2977), 1, - sym_html_character_reference, - ACTIONS(2979), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(1196), 1, - aux_sym__jsx_string_repeat2, - [48077] = 5, - ACTIONS(2901), 1, - anon_sym_EQ, - ACTIONS(2981), 1, - anon_sym_COMMA, - ACTIONS(2983), 1, - anon_sym_RPAREN, - STATE(1262), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [48094] = 2, + [48095] = 5, + ACTIONS(2863), 1, + anon_sym_extends, + ACTIONS(2970), 1, + anon_sym_LBRACE, + STATE(59), 1, + sym_class_body, + STATE(1405), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2087), 4, - sym__automatic_semicolon, + [48112] = 5, + ACTIONS(2638), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [48105] = 3, + ACTIONS(2972), 1, + sym_identifier, + ACTIONS(2974), 1, + anon_sym_STAR, + STATE(1492), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2087), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2133), 2, + [48129] = 5, + ACTIONS(674), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [48118] = 4, - ACTIONS(2985), 1, - anon_sym_COMMA, - STATE(1240), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(2897), 1, + anon_sym_EQ, + ACTIONS(2976), 1, + anon_sym_RBRACK, + STATE(1261), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1499), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48133] = 4, - ACTIONS(2867), 1, + [48146] = 4, + ACTIONS(2978), 1, anon_sym_COMMA, - STATE(1224), 1, - aux_sym_variable_declaration_repeat1, + STATE(1242), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2988), 2, + ACTIONS(1541), 2, sym__automatic_semicolon, anon_sym_SEMI, - [48148] = 2, + [48161] = 4, + ACTIONS(2461), 1, + anon_sym_STAR, + ACTIONS(2463), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2463), 4, - anon_sym_LPAREN, - anon_sym_DOT, - sym_optional_chain, - anon_sym_BQUOTE, - [48159] = 5, - ACTIONS(2709), 1, + STATE(1640), 2, + sym_namespace_import, + sym_named_imports, + [48176] = 5, + ACTIONS(2739), 1, anon_sym_LBRACE, - ACTIONS(2859), 1, + ACTIONS(2863), 1, anon_sym_extends, - STATE(740), 1, + STATE(707), 1, sym_class_body, - STATE(1574), 1, + STATE(1512), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48176] = 2, + [48193] = 5, + ACTIONS(2855), 1, + anon_sym_with, + ACTIONS(2981), 1, + anon_sym_SEMI, + ACTIONS(2983), 1, + sym__automatic_semicolon, + STATE(1437), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1789), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [48187] = 5, - ACTIONS(672), 1, - anon_sym_COMMA, - ACTIONS(2901), 1, - anon_sym_EQ, - ACTIONS(2990), 1, - anon_sym_RBRACK, - STATE(1302), 1, - aux_sym_array_pattern_repeat1, + [48210] = 5, + ACTIONS(2863), 1, + anon_sym_extends, + ACTIONS(2970), 1, + anon_sym_LBRACE, + STATE(58), 1, + sym_class_body, + STATE(1496), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48204] = 4, - ACTIONS(2992), 1, - anon_sym_from, - STATE(1371), 1, - sym__from_clause, + [48227] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2994), 2, + ACTIONS(2087), 4, sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - [48219] = 5, + anon_sym_EQ, + [48238] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2967), 1, - anon_sym_SQUOTE, - STATE(1207), 1, - aux_sym_string_repeat2, - ACTIONS(2996), 2, - sym_unescaped_single_string_fragment, + ACTIONS(2985), 1, + anon_sym_DQUOTE, + STATE(1252), 1, + aux_sym_string_repeat1, + ACTIONS(2851), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [48236] = 5, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2998), 1, - anon_sym_class, - STATE(939), 1, - aux_sym_export_statement_repeat1, - STATE(981), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [48253] = 5, + [48255] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2965), 1, + ACTIONS(2987), 1, anon_sym_SQUOTE, - STATE(1190), 1, + STATE(1249), 1, aux_sym_string_repeat2, - ACTIONS(2889), 2, + ACTIONS(2989), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [48270] = 4, - ACTIONS(1625), 1, + [48272] = 4, + ACTIONS(2843), 1, anon_sym_COMMA, - STATE(1240), 1, - aux_sym_sequence_expression_repeat1, + STATE(1216), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2652), 2, + ACTIONS(2992), 2, sym__automatic_semicolon, anon_sym_SEMI, - [48285] = 5, - ACTIONS(2703), 1, - anon_sym_LBRACE, - ACTIONS(2859), 1, - anon_sym_extends, - STATE(497), 1, - sym_class_body, - STATE(1549), 1, - sym_class_heritage, + [48287] = 4, + ACTIONS(2843), 1, + anon_sym_COMMA, + STATE(1216), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(2994), 2, + sym__automatic_semicolon, + anon_sym_SEMI, [48302] = 5, - ACTIONS(2709), 1, - anon_sym_LBRACE, - ACTIONS(2859), 1, - anon_sym_extends, - STATE(663), 1, - sym_class_body, - STATE(1520), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2996), 1, + anon_sym_DQUOTE, + STATE(1252), 1, + aux_sym_string_repeat1, + ACTIONS(2998), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, [48319] = 5, - ACTIONS(2709), 1, + ACTIONS(2785), 1, anon_sym_LBRACE, - ACTIONS(2859), 1, + ACTIONS(2863), 1, anon_sym_extends, - STATE(744), 1, + STATE(581), 1, sym_class_body, - STATE(1498), 1, + STATE(1432), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, [48336] = 5, - ACTIONS(2634), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(3000), 1, + ACTIONS(3001), 1, sym_identifier, - ACTIONS(3002), 1, + ACTIONS(3003), 1, anon_sym_STAR, - STATE(1442), 1, + STATE(1582), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, [48353] = 5, - ACTIONS(2859), 1, - anon_sym_extends, - ACTIONS(2924), 1, - anon_sym_LBRACE, - STATE(56), 1, - sym_class_body, - STATE(1372), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [48370] = 4, - ACTIONS(2867), 1, - anon_sym_COMMA, - STATE(1212), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3004), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48385] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3006), 1, - sym__glimmer_template_content, - ACTIONS(3008), 1, - sym_glimmer_closing_tag, - STATE(1308), 1, - aux_sym_glimmer_template_repeat1, - [48401] = 3, - ACTIONS(3010), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1280), 2, - anon_sym_in, - anon_sym_of, - [48413] = 4, - ACTIONS(2634), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(3012), 1, + ACTIONS(3005), 1, sym_identifier, - STATE(1446), 1, + ACTIONS(3007), 1, + anon_sym_STAR, + STATE(1492), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48427] = 4, - ACTIONS(2634), 1, - anon_sym_LPAREN, - ACTIONS(3014), 1, - sym_identifier, - STATE(1522), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, + [48370] = 5, + ACTIONS(3), 1, sym_comment, - [48441] = 4, - ACTIONS(2981), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2985), 1, + anon_sym_SQUOTE, + STATE(1249), 1, + aux_sym_string_repeat2, + ACTIONS(2849), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [48387] = 4, + ACTIONS(3009), 1, anon_sym_COMMA, - ACTIONS(2983), 1, - anon_sym_RPAREN, - STATE(1262), 1, - aux_sym_formal_parameters_repeat1, + STATE(1257), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48455] = 4, - ACTIONS(719), 1, + ACTIONS(1720), 2, anon_sym_RPAREN, - ACTIONS(3016), 1, - anon_sym_COMMA, - STATE(1348), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_RBRACK, + [48402] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48469] = 4, - ACTIONS(2069), 1, + ACTIONS(1720), 3, anon_sym_COMMA, - ACTIONS(3018), 1, - anon_sym_RBRACE, - STATE(1320), 1, - aux_sym_object_pattern_repeat1, + anon_sym_RPAREN, + anon_sym_RBRACK, + [48412] = 3, + ACTIONS(2897), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48483] = 4, - ACTIONS(2043), 1, + ACTIONS(3012), 2, anon_sym_COMMA, - ACTIONS(3020), 1, - anon_sym_RBRACE, - STATE(1321), 1, - aux_sym_object_repeat1, + anon_sym_RBRACK, + [48424] = 4, + ACTIONS(709), 1, + anon_sym_COMMA, + ACTIONS(3014), 1, + anon_sym_RBRACK, + STATE(1257), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48497] = 4, - ACTIONS(2069), 1, + [48438] = 4, + ACTIONS(674), 1, anon_sym_COMMA, - ACTIONS(3022), 1, - anon_sym_RBRACE, - STATE(1350), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3016), 1, + anon_sym_RBRACK, + STATE(1263), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48511] = 4, - ACTIONS(3024), 1, + [48452] = 4, + ACTIONS(3018), 1, anon_sym_LBRACE, - ACTIONS(3026), 1, + ACTIONS(3020), 1, anon_sym_LPAREN, - STATE(329), 1, + STATE(322), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48525] = 3, - ACTIONS(3028), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3030), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48537] = 4, - ACTIONS(2580), 1, - anon_sym_RBRACE, - ACTIONS(3032), 1, + [48466] = 4, + ACTIONS(3012), 1, + anon_sym_RBRACK, + ACTIONS(3022), 1, anon_sym_COMMA, - STATE(1333), 1, - aux_sym_named_imports_repeat1, + STATE(1263), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48551] = 4, - ACTIONS(2043), 1, + [48480] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3025), 1, + sym__glimmer_template_content, + ACTIONS(3028), 1, + sym_glimmer_closing_tag, + STATE(1264), 1, + aux_sym_glimmer_template_repeat1, + [48496] = 4, + ACTIONS(707), 1, + anon_sym_RPAREN, + ACTIONS(3030), 1, anon_sym_COMMA, - ACTIONS(3020), 1, - anon_sym_RBRACE, - STATE(1277), 1, - aux_sym_object_repeat1, + STATE(1316), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48565] = 4, - ACTIONS(2069), 1, - anon_sym_COMMA, - ACTIONS(3018), 1, - anon_sym_RBRACE, - STATE(1306), 1, - aux_sym_object_pattern_repeat1, + [48510] = 4, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(3032), 1, + sym_identifier, + STATE(1490), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48579] = 4, - ACTIONS(1964), 1, - anon_sym_DQUOTE, - ACTIONS(1966), 1, - anon_sym_SQUOTE, - STATE(1355), 1, - sym_string, + [48524] = 4, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(3034), 1, + sym_identifier, + STATE(1581), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48593] = 4, - ACTIONS(2043), 1, - anon_sym_COMMA, - ACTIONS(3034), 1, - anon_sym_RBRACE, - STATE(1353), 1, - aux_sym_object_repeat1, + [48538] = 4, + ACTIONS(957), 1, + anon_sym_while, + ACTIONS(3036), 1, + anon_sym_else, + STATE(368), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48607] = 4, - ACTIONS(672), 1, - anon_sym_COMMA, - ACTIONS(2990), 1, - anon_sym_RBRACK, - STATE(1304), 1, - aux_sym_array_pattern_repeat1, + [48552] = 3, + ACTIONS(3038), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48621] = 2, + ACTIONS(1287), 2, + anon_sym_in, + anon_sym_of, + [48564] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2805), 3, + ACTIONS(2827), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [48631] = 4, - ACTIONS(2634), 1, + [48574] = 4, + ACTIONS(2045), 1, + anon_sym_COMMA, + ACTIONS(3040), 1, + anon_sym_RBRACE, + STATE(1287), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48588] = 4, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(3036), 1, - anon_sym_COLON, - STATE(1590), 1, + ACTIONS(3042), 1, + sym_identifier, + STATE(1414), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48645] = 5, + [48602] = 4, + ACTIONS(709), 1, + anon_sym_COMMA, + ACTIONS(3044), 1, + anon_sym_RPAREN, + STATE(1257), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48616] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3038), 1, + ACTIONS(3046), 1, sym__glimmer_template_content, - ACTIONS(3040), 1, + ACTIONS(3048), 1, sym_glimmer_closing_tag, - STATE(1288), 1, + STATE(1264), 1, aux_sym_glimmer_template_repeat1, - [48661] = 4, - ACTIONS(3042), 1, + [48632] = 4, + ACTIONS(709), 1, anon_sym_COMMA, - ACTIONS(3045), 1, - anon_sym_RBRACE, - STATE(1277), 1, - aux_sym_object_repeat1, + ACTIONS(1726), 1, + anon_sym_RPAREN, + STATE(1323), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48675] = 2, + [48646] = 4, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(3050), 1, + sym_identifier, + STATE(1414), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3047), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [48685] = 4, - ACTIONS(705), 1, + [48660] = 4, + ACTIONS(709), 1, anon_sym_COMMA, - ACTIONS(3049), 1, + ACTIONS(1726), 1, anon_sym_RPAREN, - STATE(1214), 1, + STATE(1257), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48699] = 4, - ACTIONS(3051), 1, + [48674] = 4, + ACTIONS(674), 1, anon_sym_COMMA, - ACTIONS(3053), 1, - anon_sym_RBRACE, - STATE(1294), 1, - aux_sym_export_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [48713] = 3, - ACTIONS(3055), 1, - anon_sym_as, + ACTIONS(2976), 1, + anon_sym_RBRACK, + STATE(1263), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3057), 2, + [48688] = 4, + ACTIONS(3052), 1, anon_sym_COMMA, + ACTIONS(3054), 1, anon_sym_RBRACE, - [48725] = 2, + STATE(1308), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1730), 3, + [48702] = 4, + ACTIONS(709), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1716), 1, anon_sym_RBRACK, - [48735] = 3, - ACTIONS(2901), 1, - anon_sym_EQ, + STATE(1257), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3059), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [48747] = 3, - ACTIONS(3061), 1, - sym_identifier, + [48716] = 4, + ACTIONS(2487), 1, + anon_sym_COLON, + ACTIONS(2493), 1, + anon_sym_DOT, + ACTIONS(3056), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3063), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48759] = 4, - ACTIONS(2043), 1, + [48730] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3058), 1, + sym__glimmer_template_content, + ACTIONS(3060), 1, + sym_glimmer_closing_tag, + STATE(1325), 1, + aux_sym_glimmer_template_repeat1, + [48746] = 3, + ACTIONS(3062), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3064), 2, anon_sym_COMMA, - ACTIONS(3065), 1, anon_sym_RBRACE, - STATE(1291), 1, - aux_sym_object_repeat1, + [48758] = 4, + ACTIONS(3066), 1, + anon_sym_COMMA, + ACTIONS(3069), 1, + anon_sym_RBRACE, + STATE(1284), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48772] = 4, + ACTIONS(3071), 1, + sym_identifier, + STATE(922), 1, + sym_decorator_member_expression, + STATE(976), 1, + sym_decorator_call_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48786] = 3, + ACTIONS(2715), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48773] = 4, - ACTIONS(2043), 1, + ACTIONS(1287), 2, + anon_sym_in, + anon_sym_of, + [48798] = 4, + ACTIONS(3073), 1, anon_sym_COMMA, - ACTIONS(3065), 1, + ACTIONS(3076), 1, anon_sym_RBRACE, - STATE(1277), 1, + STATE(1287), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48787] = 4, - ACTIONS(705), 1, - anon_sym_COMMA, - ACTIONS(3067), 1, - anon_sym_RBRACK, - STATE(1214), 1, - aux_sym_array_repeat1, + [48812] = 4, + ACTIONS(2487), 1, + anon_sym_COLON, + ACTIONS(2493), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48801] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3006), 1, - sym__glimmer_template_content, - ACTIONS(3069), 1, - sym_glimmer_closing_tag, - STATE(1308), 1, - aux_sym_glimmer_template_repeat1, - [48817] = 4, - ACTIONS(672), 1, + [48826] = 4, + ACTIONS(709), 1, anon_sym_COMMA, - ACTIONS(2903), 1, + ACTIONS(1716), 1, anon_sym_RBRACK, - STATE(1330), 1, - aux_sym_array_pattern_repeat1, + STATE(1260), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48831] = 4, - ACTIONS(2043), 1, + [48840] = 4, + ACTIONS(2045), 1, anon_sym_COMMA, - ACTIONS(3071), 1, + ACTIONS(3080), 1, anon_sym_RBRACE, - STATE(1277), 1, + STATE(1287), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48845] = 4, - ACTIONS(2043), 1, - anon_sym_COMMA, - ACTIONS(3073), 1, - anon_sym_RBRACE, - STATE(1277), 1, - aux_sym_object_repeat1, + [48854] = 4, + ACTIONS(2918), 1, + anon_sym_from, + ACTIONS(3082), 1, + anon_sym_as, + STATE(1595), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48859] = 4, - ACTIONS(705), 1, - anon_sym_COMMA, - ACTIONS(1716), 1, - anon_sym_RBRACK, - STATE(1329), 1, - aux_sym_array_repeat1, + [48868] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48873] = 3, - ACTIONS(1615), 1, - anon_sym_in, + ACTIONS(3084), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [48878] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1812), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [48885] = 4, - ACTIONS(2568), 1, + ACTIONS(3086), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [48888] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3088), 1, + sym__glimmer_template_content, + ACTIONS(3090), 1, + sym_glimmer_closing_tag, + STATE(1274), 1, + aux_sym_glimmer_template_repeat1, + [48904] = 4, + ACTIONS(2588), 1, anon_sym_RBRACE, - ACTIONS(3075), 1, + ACTIONS(3092), 1, anon_sym_COMMA, - STATE(1311), 1, + STATE(1328), 1, aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48899] = 4, - ACTIONS(705), 1, + [48918] = 4, + ACTIONS(709), 1, anon_sym_COMMA, - ACTIONS(1716), 1, - anon_sym_RBRACK, - STATE(1214), 1, + ACTIONS(1736), 1, + anon_sym_RPAREN, + STATE(1257), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48913] = 4, - ACTIONS(672), 1, + [48932] = 4, + ACTIONS(674), 1, anon_sym_COMMA, - ACTIONS(2903), 1, + ACTIONS(2976), 1, anon_sym_RBRACK, - STATE(1304), 1, + STATE(1261), 1, aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48927] = 4, - ACTIONS(705), 1, + [48946] = 4, + ACTIONS(709), 1, anon_sym_COMMA, - ACTIONS(1734), 1, + ACTIONS(1736), 1, anon_sym_RPAREN, - STATE(1301), 1, + STATE(1273), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48941] = 4, - ACTIONS(705), 1, + [48960] = 4, + ACTIONS(2061), 1, anon_sym_COMMA, - ACTIONS(1734), 1, - anon_sym_RPAREN, - STATE(1214), 1, - aux_sym_array_repeat1, + ACTIONS(3094), 1, + anon_sym_RBRACE, + STATE(1284), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48974] = 4, + ACTIONS(2061), 1, + anon_sym_COMMA, + ACTIONS(3096), 1, + anon_sym_RBRACE, + STATE(1284), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48955] = 4, - ACTIONS(2043), 1, + [48988] = 4, + ACTIONS(2045), 1, anon_sym_COMMA, - ACTIONS(3034), 1, + ACTIONS(3098), 1, anon_sym_RBRACE, - STATE(1277), 1, + STATE(1287), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48969] = 4, - ACTIONS(2483), 1, + [49002] = 4, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(3100), 1, anon_sym_COLON, - ACTIONS(2489), 1, - anon_sym_DOT, - ACTIONS(3077), 1, - anon_sym_GT, + STATE(1572), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48983] = 4, - ACTIONS(705), 1, - anon_sym_COMMA, - ACTIONS(3079), 1, - anon_sym_RPAREN, - STATE(1214), 1, - aux_sym_array_repeat1, + [49016] = 4, + ACTIONS(3102), 1, + anon_sym_LPAREN, + ACTIONS(3104), 1, + anon_sym_await, + STATE(35), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48997] = 4, - ACTIONS(672), 1, - anon_sym_COMMA, - ACTIONS(3081), 1, - anon_sym_RBRACK, - STATE(1304), 1, - aux_sym_array_pattern_repeat1, + [49030] = 3, + ACTIONS(2897), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49011] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3006), 1, - sym__glimmer_template_content, - ACTIONS(3083), 1, - sym_glimmer_closing_tag, - STATE(1308), 1, - aux_sym_glimmer_template_repeat1, - [49027] = 4, - ACTIONS(3059), 1, - anon_sym_RBRACK, - ACTIONS(3085), 1, + ACTIONS(3106), 2, anon_sym_COMMA, - STATE(1304), 1, - aux_sym_array_pattern_repeat1, + anon_sym_RBRACE, + [49042] = 4, + ACTIONS(2061), 1, + anon_sym_COMMA, + ACTIONS(3108), 1, + anon_sym_RBRACE, + STATE(1331), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49041] = 4, - ACTIONS(2043), 1, + [49056] = 4, + ACTIONS(2045), 1, anon_sym_COMMA, - ACTIONS(3088), 1, + ACTIONS(3110), 1, anon_sym_RBRACE, - STATE(1277), 1, + STATE(1330), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49055] = 4, - ACTIONS(3090), 1, + [49070] = 4, + ACTIONS(2045), 1, anon_sym_COMMA, - ACTIONS(3093), 1, + ACTIONS(3110), 1, anon_sym_RBRACE, - STATE(1306), 1, - aux_sym_object_pattern_repeat1, + STATE(1287), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49069] = 4, - ACTIONS(2069), 1, - anon_sym_COMMA, - ACTIONS(3095), 1, + [49084] = 4, + ACTIONS(2596), 1, anon_sym_RBRACE, - STATE(1306), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3112), 1, + anon_sym_COMMA, + STATE(1349), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49083] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3097), 1, - sym__glimmer_template_content, - ACTIONS(3100), 1, - sym_glimmer_closing_tag, - STATE(1308), 1, - aux_sym_glimmer_template_repeat1, - [49099] = 2, + [49098] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3102), 3, + ACTIONS(2916), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [49109] = 2, + [49108] = 4, + ACTIONS(2061), 1, + anon_sym_COMMA, + ACTIONS(3108), 1, + anon_sym_RBRACE, + STATE(1284), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3104), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [49119] = 4, - ACTIONS(3106), 1, - anon_sym_COMMA, - ACTIONS(3109), 1, - anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_export_clause_repeat1, + [49122] = 4, + ACTIONS(3114), 1, + anon_sym_LPAREN, + ACTIONS(3116), 1, + anon_sym_await, + STATE(32), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [49136] = 4, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(3118), 1, + sym_identifier, + STATE(1556), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49133] = 2, + [49150] = 3, + ACTIONS(3120), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2947), 3, + ACTIONS(3122), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [49143] = 4, - ACTIONS(2483), 1, + [49162] = 4, + ACTIONS(2487), 1, anon_sym_COLON, - ACTIONS(2489), 1, + ACTIONS(2493), 1, anon_sym_DOT, - ACTIONS(3111), 1, + ACTIONS(3124), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49157] = 4, - ACTIONS(2634), 1, - anon_sym_LPAREN, - ACTIONS(3113), 1, - anon_sym_COLON, - STATE(1590), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [49171] = 3, - ACTIONS(3115), 1, - anon_sym_as, + [49176] = 3, + ACTIONS(2897), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3117), 2, + ACTIONS(3126), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [49183] = 4, - ACTIONS(3119), 1, - anon_sym_LPAREN, - ACTIONS(3121), 1, - anon_sym_await, - STATE(45), 1, - sym__for_header, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [49197] = 4, - ACTIONS(2767), 1, - sym_identifier, - ACTIONS(2769), 1, - anon_sym_LBRACK, - ACTIONS(2771), 1, - sym_private_property_identifier, + anon_sym_RPAREN, + [49188] = 4, + ACTIONS(3126), 1, + anon_sym_RPAREN, + ACTIONS(3128), 1, + anon_sym_COMMA, + STATE(1316), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49211] = 4, - ACTIONS(2043), 1, + [49202] = 4, + ACTIONS(674), 1, anon_sym_COMMA, - ACTIONS(3123), 1, - anon_sym_RBRACE, - STATE(1277), 1, - aux_sym_object_repeat1, + ACTIONS(3131), 1, + anon_sym_RBRACK, + STATE(1263), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49225] = 4, - ACTIONS(2069), 1, + [49216] = 4, + ACTIONS(709), 1, anon_sym_COMMA, - ACTIONS(3125), 1, - anon_sym_RBRACE, - STATE(1306), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3133), 1, + anon_sym_RBRACK, + STATE(1257), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49239] = 4, - ACTIONS(2069), 1, + [49230] = 4, + ACTIONS(674), 1, anon_sym_COMMA, - ACTIONS(3127), 1, - anon_sym_RBRACE, - STATE(1306), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(2899), 1, + anon_sym_RBRACK, + STATE(1317), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49253] = 4, - ACTIONS(2043), 1, + [49244] = 4, + ACTIONS(709), 1, anon_sym_COMMA, - ACTIONS(3129), 1, - anon_sym_RBRACE, - STATE(1277), 1, - aux_sym_object_repeat1, + ACTIONS(1712), 1, + anon_sym_RBRACK, + STATE(1318), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49267] = 3, - ACTIONS(2765), 1, - anon_sym_EQ, + [49258] = 4, + ACTIONS(709), 1, + anon_sym_COMMA, + ACTIONS(1712), 1, + anon_sym_RBRACK, + STATE(1257), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1280), 2, - anon_sym_in, - anon_sym_of, - [49279] = 4, - ACTIONS(2634), 1, - anon_sym_LPAREN, - ACTIONS(3131), 1, - sym_identifier, - STATE(1386), 1, - sym_formal_parameters, + [49272] = 4, + ACTIONS(674), 1, + anon_sym_COMMA, + ACTIONS(2899), 1, + anon_sym_RBRACK, + STATE(1263), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49293] = 4, - ACTIONS(3133), 1, + [49286] = 4, + ACTIONS(709), 1, anon_sym_COMMA, ACTIONS(3135), 1, - anon_sym_RBRACE, - STATE(1268), 1, - aux_sym_named_imports_repeat1, + anon_sym_RPAREN, + STATE(1257), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49307] = 3, + [49300] = 4, ACTIONS(2901), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3137), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [49319] = 4, - ACTIONS(969), 1, - anon_sym_while, - ACTIONS(3139), 1, - anon_sym_else, - STATE(366), 1, - sym_else_clause, + ACTIONS(2903), 1, + anon_sym_RPAREN, + STATE(1265), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49333] = 5, + [49314] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3141), 1, + ACTIONS(3046), 1, sym__glimmer_template_content, - ACTIONS(3143), 1, + ACTIONS(3137), 1, sym_glimmer_closing_tag, - STATE(1303), 1, + STATE(1264), 1, aux_sym_glimmer_template_repeat1, - [49349] = 4, - ACTIONS(2634), 1, - anon_sym_LPAREN, - ACTIONS(3145), 1, - sym_identifier, - STATE(1446), 1, - sym_formal_parameters, + [49330] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49363] = 4, - ACTIONS(705), 1, - anon_sym_COMMA, - ACTIONS(3147), 1, - anon_sym_RBRACK, - STATE(1214), 1, - aux_sym_array_repeat1, + ACTIONS(3139), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [49340] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49377] = 4, - ACTIONS(672), 1, + ACTIONS(3141), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [49350] = 4, + ACTIONS(3143), 1, anon_sym_COMMA, - ACTIONS(3149), 1, - anon_sym_RBRACK, - STATE(1304), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(3146), 1, + anon_sym_RBRACE, + STATE(1328), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49391] = 4, - ACTIONS(2634), 1, + [49364] = 4, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(3151), 1, + ACTIONS(3148), 1, sym_identifier, - STATE(1386), 1, + STATE(1490), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49405] = 4, - ACTIONS(672), 1, + [49378] = 4, + ACTIONS(2045), 1, anon_sym_COMMA, - ACTIONS(2990), 1, - anon_sym_RBRACK, - STATE(1302), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(3150), 1, + anon_sym_RBRACE, + STATE(1287), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49419] = 4, - ACTIONS(3153), 1, + [49392] = 4, + ACTIONS(2061), 1, anon_sym_COMMA, - ACTIONS(3156), 1, + ACTIONS(3152), 1, anon_sym_RBRACE, - STATE(1333), 1, - aux_sym_named_imports_repeat1, + STATE(1284), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49433] = 4, - ACTIONS(705), 1, + [49406] = 4, + ACTIONS(2061), 1, anon_sym_COMMA, - ACTIONS(1744), 1, - anon_sym_RBRACK, - STATE(1214), 1, - aux_sym_array_repeat1, + ACTIONS(3154), 1, + anon_sym_RBRACE, + STATE(1284), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49447] = 4, - ACTIONS(705), 1, - anon_sym_COMMA, - ACTIONS(1748), 1, - anon_sym_RPAREN, - STATE(1279), 1, - aux_sym_array_repeat1, + [49420] = 3, + ACTIONS(1617), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49461] = 4, - ACTIONS(705), 1, + ACTIONS(1767), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [49432] = 4, + ACTIONS(709), 1, anon_sym_COMMA, - ACTIONS(1748), 1, + ACTIONS(3156), 1, anon_sym_RPAREN, - STATE(1214), 1, + STATE(1257), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49475] = 4, - ACTIONS(705), 1, + [49446] = 4, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(3158), 1, + sym_identifier, + STATE(1490), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [49460] = 4, + ACTIONS(2487), 1, + anon_sym_COLON, + ACTIONS(2493), 1, + anon_sym_DOT, + ACTIONS(3160), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [49474] = 4, + ACTIONS(709), 1, anon_sym_COMMA, - ACTIONS(1718), 1, + ACTIONS(1710), 1, anon_sym_RPAREN, - STATE(1346), 1, + STATE(1257), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49489] = 4, - ACTIONS(705), 1, + [49488] = 4, + ACTIONS(709), 1, anon_sym_COMMA, - ACTIONS(1718), 1, + ACTIONS(1710), 1, anon_sym_RPAREN, - STATE(1214), 1, + STATE(1334), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49503] = 4, - ACTIONS(2634), 1, - anon_sym_LPAREN, - ACTIONS(3158), 1, - sym_identifier, - STATE(1446), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, + [49502] = 5, + ACTIONS(3), 1, sym_comment, - [49517] = 4, - ACTIONS(2483), 1, - anon_sym_COLON, - ACTIONS(2489), 1, - anon_sym_DOT, - ACTIONS(3160), 1, - anon_sym_GT, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3162), 1, + sym__glimmer_template_content, + ACTIONS(3164), 1, + sym_glimmer_closing_tag, + STATE(1354), 1, + aux_sym_glimmer_template_repeat1, + [49518] = 4, + ACTIONS(2045), 1, + anon_sym_COMMA, + ACTIONS(3166), 1, + anon_sym_RBRACE, + STATE(1287), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49531] = 4, - ACTIONS(2634), 1, - anon_sym_LPAREN, - ACTIONS(3162), 1, + [49532] = 3, + ACTIONS(3168), 1, sym_identifier, - STATE(1386), 1, - sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49545] = 4, - ACTIONS(2634), 1, - anon_sym_LPAREN, - ACTIONS(3164), 1, - sym_identifier, - STATE(1560), 1, - sym_formal_parameters, + ACTIONS(3170), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49544] = 4, + ACTIONS(2045), 1, + anon_sym_COMMA, + ACTIONS(3172), 1, + anon_sym_RBRACE, + STATE(1287), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49559] = 4, - ACTIONS(3166), 1, - anon_sym_LPAREN, - ACTIONS(3168), 1, - anon_sym_await, - STATE(42), 1, - sym__for_header, + [49558] = 4, + ACTIONS(2061), 1, + anon_sym_COMMA, + ACTIONS(3174), 1, + anon_sym_RBRACE, + STATE(1299), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49573] = 3, - ACTIONS(2901), 1, - anon_sym_EQ, + [49572] = 3, + ACTIONS(3176), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3170), 2, + ACTIONS(3178), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [49585] = 4, - ACTIONS(2483), 1, + anon_sym_RBRACE, + [49584] = 4, + ACTIONS(2045), 1, + anon_sym_COMMA, + ACTIONS(3180), 1, + anon_sym_RBRACE, + STATE(1290), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [49598] = 4, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(3182), 1, anon_sym_COLON, - ACTIONS(2489), 1, - anon_sym_DOT, - ACTIONS(3172), 1, - anon_sym_GT, + STATE(1572), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [49612] = 4, + ACTIONS(2045), 1, + anon_sym_COMMA, + ACTIONS(3180), 1, + anon_sym_RBRACE, + STATE(1287), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49599] = 4, - ACTIONS(705), 1, + [49626] = 4, + ACTIONS(2061), 1, anon_sym_COMMA, ACTIONS(3174), 1, - anon_sym_RPAREN, - STATE(1214), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + STATE(1284), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49613] = 4, - ACTIONS(705), 1, + [49640] = 4, + ACTIONS(3184), 1, anon_sym_COMMA, - ACTIONS(1744), 1, - anon_sym_RBRACK, - STATE(1287), 1, - aux_sym_array_repeat1, + ACTIONS(3187), 1, + anon_sym_RBRACE, + STATE(1349), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49627] = 4, - ACTIONS(3170), 1, - anon_sym_RPAREN, - ACTIONS(3176), 1, + [49654] = 4, + ACTIONS(2045), 1, anon_sym_COMMA, - STATE(1348), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(3189), 1, + anon_sym_RBRACE, + STATE(1342), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49641] = 4, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(2825), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, - sym_private_property_identifier, + [49668] = 4, + ACTIONS(3191), 1, + anon_sym_COMMA, + ACTIONS(3193), 1, + anon_sym_RBRACE, + STATE(1295), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49655] = 4, - ACTIONS(2069), 1, + [49682] = 4, + ACTIONS(2045), 1, anon_sym_COMMA, - ACTIONS(3179), 1, + ACTIONS(3189), 1, anon_sym_RBRACE, - STATE(1306), 1, - aux_sym_object_pattern_repeat1, + STATE(1287), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49669] = 2, + [49696] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3181), 3, + ACTIONS(3195), 3, sym__automatic_semicolon, anon_sym_from, anon_sym_SEMI, - [49679] = 5, + [49706] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3183), 1, + ACTIONS(3046), 1, sym__glimmer_template_content, - ACTIONS(3185), 1, + ACTIONS(3197), 1, sym_glimmer_closing_tag, - STATE(1257), 1, + STATE(1264), 1, aux_sym_glimmer_template_repeat1, - [49695] = 4, - ACTIONS(2043), 1, - anon_sym_COMMA, - ACTIONS(3187), 1, - anon_sym_RBRACE, - STATE(1277), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [49709] = 4, - ACTIONS(3189), 1, + [49722] = 4, + ACTIONS(2638), 1, + anon_sym_LPAREN, + ACTIONS(3199), 1, sym_identifier, - STATE(899), 1, - sym_decorator_member_expression, - STATE(979), 1, - sym_decorator_call_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [49723] = 2, + STATE(1414), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3191), 3, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_SEMI, - [49733] = 4, - ACTIONS(2992), 1, - anon_sym_from, - ACTIONS(3193), 1, - anon_sym_as, - STATE(1431), 1, - sym__from_clause, + [49736] = 4, + ACTIONS(1966), 1, + anon_sym_DQUOTE, + ACTIONS(1968), 1, + anon_sym_SQUOTE, + STATE(1292), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49747] = 4, - ACTIONS(2069), 1, - anon_sym_COMMA, - ACTIONS(3022), 1, - anon_sym_RBRACE, - STATE(1306), 1, - aux_sym_object_pattern_repeat1, + [49750] = 4, + ACTIONS(2767), 1, + sym_identifier, + ACTIONS(2769), 1, + anon_sym_LBRACK, + ACTIONS(2771), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49761] = 3, - ACTIONS(3195), 1, + [49764] = 4, + ACTIONS(2815), 1, sym_identifier, - ACTIONS(3197), 1, + ACTIONS(2817), 1, + anon_sym_LBRACK, + ACTIONS(2819), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49772] = 2, + [49778] = 3, + ACTIONS(2493), 1, + anon_sym_DOT, + ACTIONS(3160), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1689), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49781] = 3, - ACTIONS(3024), 1, + [49789] = 3, + ACTIONS(2101), 1, anon_sym_LBRACE, - STATE(912), 1, + STATE(906), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49792] = 3, - ACTIONS(3199), 1, - anon_sym_LPAREN, - STATE(37), 1, - sym__for_header, + [49800] = 3, + ACTIONS(2918), 1, + anon_sym_from, + STATE(1245), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49803] = 3, - ACTIONS(3024), 1, + [49811] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(291), 1, + STATE(927), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49814] = 3, - ACTIONS(2634), 1, + [49822] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1479), 1, + STATE(1440), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49825] = 3, - ACTIONS(2634), 1, + [49833] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1489), 1, + STATE(1439), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49836] = 3, - ACTIONS(3024), 1, - anon_sym_LBRACE, - STATE(916), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [49847] = 3, - ACTIONS(2099), 1, - anon_sym_LBRACE, - STATE(895), 1, - sym_statement_block, + [49844] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1435), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49858] = 2, + [49855] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3201), 2, + ACTIONS(514), 2, sym__automatic_semicolon, anon_sym_SEMI, - [49867] = 3, + [49864] = 3, + ACTIONS(3201), 1, + anon_sym_COMMA, ACTIONS(3203), 1, - anon_sym_SEMI, - ACTIONS(3205), 1, - sym__automatic_semicolon, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49878] = 3, - ACTIONS(2634), 1, + [49875] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1548), 1, + STATE(1430), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49889] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1563), 1, - sym_formal_parameters, + [49886] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49900] = 3, + ACTIONS(3205), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [49895] = 3, ACTIONS(3207), 1, - anon_sym_SEMI, - ACTIONS(3209), 1, - sym__automatic_semicolon, + anon_sym_LBRACE, + STATE(347), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49911] = 3, - ACTIONS(2924), 1, - anon_sym_LBRACE, - STATE(52), 1, - sym_class_body, + [49906] = 3, + ACTIONS(3209), 1, + anon_sym_LPAREN, + STATE(38), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49922] = 3, - ACTIONS(2099), 1, + [49917] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, STATE(896), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49933] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3211), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [49942] = 3, - ACTIONS(2099), 1, + [49928] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(897), 1, + STATE(898), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49953] = 3, - ACTIONS(2483), 1, - anon_sym_COLON, - ACTIONS(3077), 1, - anon_sym_GT, + [49939] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1377), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49964] = 3, - ACTIONS(3024), 1, - anon_sym_LBRACE, - STATE(903), 1, - sym_statement_block, + [49950] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1421), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49975] = 3, - ACTIONS(2489), 1, - anon_sym_DOT, - ACTIONS(3077), 1, - anon_sym_GT, + [49961] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49986] = 3, - ACTIONS(3024), 1, + ACTIONS(3187), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [49970] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(898), 1, + STATE(926), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49997] = 3, - ACTIONS(2099), 1, - anon_sym_LBRACE, - STATE(893), 1, - sym_statement_block, + [49981] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1420), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50008] = 3, - ACTIONS(2099), 1, - anon_sym_LBRACE, - STATE(898), 1, - sym_statement_block, + [49992] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1413), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50019] = 3, - ACTIONS(2099), 1, + [50003] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, STATE(900), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50030] = 3, - ACTIONS(3213), 1, + [50014] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(328), 1, - sym_parenthesized_expression, + STATE(1412), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50041] = 3, - ACTIONS(3215), 1, + [50025] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(36), 1, - sym_parenthesized_expression, + STATE(1409), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50052] = 3, - ACTIONS(2099), 1, - anon_sym_LBRACE, - STATE(902), 1, - sym_statement_block, + [50036] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1408), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50063] = 3, - ACTIONS(3217), 1, + [50047] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(668), 1, + STATE(901), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50074] = 3, - ACTIONS(3219), 1, + [50058] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1407), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50069] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(58), 1, + STATE(902), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50085] = 3, - ACTIONS(3221), 1, - sym_identifier, - ACTIONS(3223), 1, - sym_jsx_identifier, + [50080] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50096] = 3, - ACTIONS(2634), 1, + ACTIONS(1810), 2, anon_sym_LPAREN, - STATE(1508), 1, - sym_formal_parameters, + anon_sym_COLON, + [50089] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50107] = 3, - ACTIONS(2634), 1, + ACTIONS(2574), 2, + anon_sym_in, + anon_sym_of, + [50098] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1404), 1, + STATE(1456), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50118] = 3, - ACTIONS(2807), 1, - anon_sym_in, - ACTIONS(2809), 1, - anon_sym_of, + [50109] = 3, + ACTIONS(2861), 1, + anon_sym_LBRACE, + STATE(328), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50129] = 3, - ACTIONS(3225), 1, + [50120] = 3, + ACTIONS(2487), 1, + anon_sym_COLON, + ACTIONS(3160), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50131] = 3, + ACTIONS(3211), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(579), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50140] = 2, + [50142] = 3, + ACTIONS(3211), 1, + anon_sym_LBRACE, + STATE(580), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3109), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50149] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1467), 1, - sym_formal_parameters, + [50153] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50160] = 3, - ACTIONS(2703), 1, + ACTIONS(3213), 2, anon_sym_LBRACE, - STATE(524), 1, - sym_class_body, + anon_sym_EQ_GT, + [50162] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50171] = 2, + ACTIONS(3215), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [50171] = 3, + ACTIONS(3217), 1, + anon_sym_LBRACE, + STATE(321), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3093), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50180] = 2, + [50182] = 3, + ACTIONS(3217), 1, + anon_sym_LBRACE, + STATE(317), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3227), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50189] = 3, - ACTIONS(2634), 1, + [50193] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1581), 1, + STATE(1406), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50200] = 3, - ACTIONS(2483), 1, - anon_sym_COLON, - ACTIONS(3111), 1, - anon_sym_GT, + [50204] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50211] = 3, - ACTIONS(2099), 1, + ACTIONS(3219), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [50213] = 3, + ACTIONS(2785), 1, anon_sym_LBRACE, - STATE(903), 1, - sym_statement_block, + STATE(582), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50222] = 3, - ACTIONS(2489), 1, - anon_sym_DOT, - ACTIONS(3111), 1, - anon_sym_GT, + [50224] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(3221), 2, + sym__automatic_semicolon, + anon_sym_SEMI, [50233] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3045), 2, + ACTIONS(3223), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50242] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3146), 2, anon_sym_COMMA, anon_sym_RBRACE, - [50242] = 3, + [50251] = 3, ACTIONS(3225), 1, anon_sym_LBRACE, - STATE(525), 1, + STATE(66), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50253] = 3, - ACTIONS(3229), 1, + [50262] = 3, + ACTIONS(2970), 1, anon_sym_LBRACE, - STATE(320), 1, - sym_statement_block, + STATE(52), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50264] = 3, - ACTIONS(3229), 1, + [50273] = 3, + ACTIONS(3217), 1, anon_sym_LBRACE, - STATE(317), 1, + STATE(333), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50275] = 3, - ACTIONS(2099), 1, + [50284] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(912), 1, + STATE(904), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50286] = 3, - ACTIONS(2857), 1, + [50295] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(319), 1, - sym_class_body, + STATE(914), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50297] = 3, - ACTIONS(2857), 1, + [50306] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(323), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50308] = 3, - ACTIONS(2087), 1, - anon_sym_LPAREN, - ACTIONS(2279), 1, - anon_sym_EQ_GT, + STATE(915), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50319] = 2, + [50317] = 3, + ACTIONS(3225), 1, + anon_sym_LBRACE, + STATE(57), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1789), 2, - anon_sym_LPAREN, - anon_sym_COLON, [50328] = 3, - ACTIONS(2099), 1, + ACTIONS(3225), 1, anon_sym_LBRACE, - STATE(930), 1, + STATE(63), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, [50339] = 3, - ACTIONS(3231), 1, - sym_identifier, - ACTIONS(3233), 1, - sym_private_property_identifier, + ACTIONS(3018), 1, + anon_sym_LBRACE, + STATE(916), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, [50350] = 3, - ACTIONS(3215), 1, - anon_sym_LPAREN, - STATE(44), 1, - sym_parenthesized_expression, + ACTIONS(3018), 1, + anon_sym_LBRACE, + STATE(918), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, [50361] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1405), 1, - sym_formal_parameters, + ACTIONS(3227), 1, + anon_sym_LBRACE, + STATE(750), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, [50372] = 3, - ACTIONS(3215), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(40), 1, - sym_parenthesized_expression, + STATE(1466), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, [50383] = 3, - ACTIONS(3219), 1, - anon_sym_LBRACE, - STATE(59), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50394] = 3, - ACTIONS(3024), 1, - anon_sym_LBRACE, - STATE(922), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50405] = 3, - ACTIONS(3215), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(27), 1, - sym_parenthesized_expression, + STATE(1404), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50416] = 3, - ACTIONS(2767), 1, - sym_identifier, - ACTIONS(2771), 1, - sym_private_property_identifier, + [50394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50427] = 3, - ACTIONS(2099), 1, + ACTIONS(3229), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50403] = 3, + ACTIONS(2101), 1, anon_sym_LBRACE, - STATE(919), 1, + STATE(937), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50438] = 3, - ACTIONS(2634), 1, + [50414] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1585), 1, + STATE(1469), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50449] = 2, + [50425] = 3, + ACTIONS(3018), 1, + anon_sym_LBRACE, + STATE(928), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50436] = 3, + ACTIONS(3018), 1, + anon_sym_LBRACE, + STATE(893), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3235), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50458] = 2, + [50447] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3137), 2, + ACTIONS(3126), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [50467] = 3, - ACTIONS(3024), 1, - anon_sym_LBRACE, - STATE(900), 1, - sym_statement_block, + anon_sym_RPAREN, + [50456] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50478] = 3, - ACTIONS(3024), 1, + ACTIONS(3231), 2, anon_sym_LBRACE, - STATE(326), 1, + anon_sym_EQ_GT, + [50465] = 3, + ACTIONS(3211), 1, + anon_sym_LBRACE, + STATE(510), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50489] = 3, - ACTIONS(3024), 1, - anon_sym_LBRACE, - STATE(923), 1, - sym_statement_block, + [50476] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1393), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50500] = 3, - ACTIONS(2087), 1, + [50487] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - ACTIONS(3237), 1, - anon_sym_EQ_GT, + STATE(1392), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50511] = 2, + [50498] = 3, + ACTIONS(2487), 1, + anon_sym_COLON, + ACTIONS(3124), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3239), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50520] = 3, - ACTIONS(3199), 1, - anon_sym_LPAREN, - STATE(32), 1, - sym__for_header, + [50509] = 3, + ACTIONS(3018), 1, + anon_sym_LBRACE, + STATE(907), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50531] = 2, + [50520] = 3, + ACTIONS(2493), 1, + anon_sym_DOT, + ACTIONS(3124), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3241), 2, + [50531] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [50540] = 3, - ACTIONS(3243), 1, - anon_sym_SEMI, - ACTIONS(3245), 1, - sym__automatic_semicolon, + STATE(924), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50551] = 3, - ACTIONS(2634), 1, + [50542] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1586), 1, + STATE(1428), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50562] = 3, - ACTIONS(3247), 1, - anon_sym_COMMA, - ACTIONS(3249), 1, - anon_sym_from, + [50553] = 3, + ACTIONS(2785), 1, + anon_sym_LBRACE, + STATE(508), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50573] = 3, - ACTIONS(2634), 1, + [50564] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1525), 1, + STATE(1470), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50584] = 3, - ACTIONS(2634), 1, + [50575] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1588), 1, + STATE(1473), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50595] = 3, - ACTIONS(2992), 1, - anon_sym_from, - STATE(1229), 1, - sym__from_clause, + [50586] = 3, + ACTIONS(3018), 1, + anon_sym_LBRACE, + STATE(894), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, + [50597] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3233), 2, + sym__automatic_semicolon, + anon_sym_SEMI, [50606] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1447), 1, - sym_formal_parameters, + ACTIONS(3235), 1, + anon_sym_SEMI, + ACTIONS(3237), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50617] = 3, - ACTIONS(2924), 1, - anon_sym_LBRACE, - STATE(54), 1, - sym_class_body, + [50617] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50628] = 3, - ACTIONS(2099), 1, + ACTIONS(3239), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50626] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(915), 1, + STATE(921), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50639] = 3, - ACTIONS(3217), 1, + [50637] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(660), 1, + STATE(920), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50650] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1387), 1, - sym_formal_parameters, + [50648] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50661] = 3, - ACTIONS(3217), 1, + ACTIONS(1350), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50657] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3241), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50666] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(739), 1, + STATE(910), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50672] = 2, + [50677] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1372), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1687), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50681] = 3, - ACTIONS(2634), 1, + [50688] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1589), 1, + STATE(1480), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50692] = 3, - ACTIONS(2634), 1, + [50699] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1416), 1, + STATE(1362), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50703] = 3, - ACTIONS(3217), 1, - anon_sym_LBRACE, - STATE(691), 1, - sym_statement_block, + [50710] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1373), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50714] = 3, - ACTIONS(3219), 1, - anon_sym_LBRACE, - STATE(55), 1, - sym_statement_block, + [50721] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1380), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50725] = 3, - ACTIONS(3024), 1, - anon_sym_LBRACE, - STATE(924), 1, - sym_statement_block, + [50732] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1384), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50736] = 3, - ACTIONS(2634), 1, + [50743] = 3, + ACTIONS(3243), 1, anon_sym_LPAREN, - STATE(1592), 1, - sym_formal_parameters, + STATE(41), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50747] = 3, - ACTIONS(2099), 1, - anon_sym_LBRACE, - STATE(906), 1, - sym_statement_block, + [50754] = 3, + ACTIONS(2918), 1, + anon_sym_from, + STATE(1586), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50758] = 3, - ACTIONS(3024), 1, - anon_sym_LBRACE, - STATE(902), 1, - sym_statement_block, + [50765] = 3, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(37), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50769] = 3, - ACTIONS(2099), 1, - anon_sym_LBRACE, - STATE(907), 1, - sym_statement_block, + [50776] = 3, + ACTIONS(2829), 1, + anon_sym_in, + ACTIONS(2831), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50780] = 2, + [50787] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1525), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50789] = 3, - ACTIONS(2634), 1, + ACTIONS(3106), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [50796] = 3, + ACTIONS(3243), 1, anon_sym_LPAREN, - STATE(1551), 1, - sym_formal_parameters, + STATE(31), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50800] = 3, - ACTIONS(3024), 1, + [50807] = 3, + ACTIONS(3211), 1, anon_sym_LBRACE, - STATE(906), 1, + STATE(576), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50811] = 3, - ACTIONS(2099), 1, - anon_sym_LBRACE, - STATE(908), 1, - sym_statement_block, + [50818] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50822] = 3, - ACTIONS(3024), 1, + ACTIONS(1691), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50827] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(373), 1, + STATE(315), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50833] = 2, + [50838] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3251), 2, + ACTIONS(1689), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50842] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1555), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50853] = 3, - ACTIONS(2634), 1, + [50847] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1379), 1, + STATE(1386), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50864] = 3, - ACTIONS(3024), 1, + [50858] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(907), 1, + STATE(899), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50875] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1562), 1, - sym_formal_parameters, + [50869] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50886] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1424), 1, - sym_formal_parameters, + ACTIONS(3245), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50878] = 3, + ACTIONS(3217), 1, + anon_sym_LBRACE, + STATE(316), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50897] = 3, - ACTIONS(2634), 1, + [50889] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1567), 1, + STATE(1396), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50908] = 3, - ACTIONS(2634), 1, + [50900] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1451), 1, + STATE(1397), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50919] = 3, - ACTIONS(3024), 1, + [50911] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(908), 1, + STATE(912), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50930] = 3, - ACTIONS(3024), 1, + [50922] = 3, + ACTIONS(2861), 1, anon_sym_LBRACE, - STATE(925), 1, - sym_statement_block, + STATE(331), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50941] = 3, - ACTIONS(2634), 1, + [50933] = 3, + ACTIONS(3209), 1, anon_sym_LPAREN, - STATE(1377), 1, - sym_formal_parameters, + STATE(29), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50952] = 3, - ACTIONS(2099), 1, + [50944] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(933), 1, + STATE(911), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50963] = 2, + [50955] = 3, + ACTIONS(3018), 1, + anon_sym_LBRACE, + STATE(909), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1348), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50972] = 2, + [50966] = 3, + ACTIONS(3211), 1, + anon_sym_LBRACE, + STATE(517), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1529), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50981] = 3, - ACTIONS(3253), 1, + [50977] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(372), 1, - sym_switch_body, + STATE(906), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50992] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1510), 1, - sym_formal_parameters, + [50988] = 3, + ACTIONS(3018), 1, + anon_sym_LBRACE, + STATE(905), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51003] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1360), 1, - sym_formal_parameters, + [50999] = 3, + ACTIONS(3247), 1, + sym_identifier, + ACTIONS(3249), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51014] = 3, - ACTIONS(2634), 1, + [51010] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1558), 1, + STATE(1577), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51025] = 3, - ACTIONS(2634), 1, + [51021] = 3, + ACTIONS(2739), 1, + anon_sym_LBRACE, + STATE(666), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51032] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1591), 1, + STATE(1472), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51036] = 3, - ACTIONS(3024), 1, + [51043] = 3, + ACTIONS(2101), 1, anon_sym_LBRACE, - STATE(927), 1, + STATE(905), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51047] = 3, - ACTIONS(3024), 1, - anon_sym_LBRACE, - STATE(928), 1, - sym_statement_block, + [51054] = 3, + ACTIONS(2493), 1, + anon_sym_DOT, + ACTIONS(3056), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51058] = 3, - ACTIONS(3024), 1, + [51065] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(929), 1, + STATE(895), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51069] = 3, - ACTIONS(3215), 1, - anon_sym_LPAREN, - STATE(29), 1, - sym_parenthesized_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51080] = 2, + [51076] = 3, + ACTIONS(2487), 1, + anon_sym_COLON, + ACTIONS(3056), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3255), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51089] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1575), 1, - sym_formal_parameters, + [51087] = 3, + ACTIONS(2101), 1, + anon_sym_LBRACE, + STATE(907), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51100] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1576), 1, - sym_formal_parameters, + [51098] = 3, + ACTIONS(2101), 1, + anon_sym_LBRACE, + STATE(909), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51111] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1577), 1, - sym_formal_parameters, + [51109] = 3, + ACTIONS(2101), 1, + anon_sym_LBRACE, + STATE(911), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51122] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1582), 1, - sym_formal_parameters, + [51120] = 3, + ACTIONS(2101), 1, + anon_sym_LBRACE, + STATE(912), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51133] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1583), 1, - sym_formal_parameters, + [51131] = 3, + ACTIONS(3227), 1, + anon_sym_LBRACE, + STATE(687), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51144] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1584), 1, - sym_formal_parameters, + [51142] = 3, + ACTIONS(2101), 1, + anon_sym_LBRACE, + STATE(920), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51155] = 2, + [51153] = 3, + ACTIONS(2101), 1, + anon_sym_LBRACE, + STATE(921), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3156), 2, - anon_sym_COMMA, - anon_sym_RBRACE, [51164] = 3, - ACTIONS(3229), 1, + ACTIONS(3225), 1, anon_sym_LBRACE, - STATE(335), 1, + STATE(56), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, [51175] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1594), 1, - sym_formal_parameters, + ACTIONS(3227), 1, + anon_sym_LBRACE, + STATE(701), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, [51186] = 3, - ACTIONS(2634), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1597), 1, + STATE(1410), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, [51197] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1448), 1, - sym_formal_parameters, + ACTIONS(3227), 1, + anon_sym_LBRACE, + STATE(706), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, [51208] = 3, - ACTIONS(2634), 1, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1568), 1, + STATE(1411), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, [51219] = 3, - ACTIONS(3257), 1, - anon_sym_SEMI, - ACTIONS(3259), 1, - sym__automatic_semicolon, + ACTIONS(2101), 1, + anon_sym_LBRACE, + STATE(894), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, [51230] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1517), 1, - sym_formal_parameters, + ACTIONS(2101), 1, + anon_sym_LBRACE, + STATE(924), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, [51241] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1599), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51252] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1366), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51263] = 3, - ACTIONS(2709), 1, + ACTIONS(2970), 1, anon_sym_LBRACE, - STATE(658), 1, + STATE(55), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51274] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1375), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51285] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1380), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51296] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1381), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51307] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1382), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51318] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1385), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51329] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1400), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51340] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1406), 1, - sym_formal_parameters, + [51252] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51351] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1411), 1, - sym_formal_parameters, + ACTIONS(3251), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51261] = 3, + ACTIONS(2101), 1, + anon_sym_LBRACE, + STATE(926), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51362] = 3, - ACTIONS(2634), 1, + [51272] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1420), 1, + STATE(1569), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51373] = 3, - ACTIONS(3024), 1, + [51283] = 3, + ACTIONS(2101), 1, anon_sym_LBRACE, - STATE(914), 1, + STATE(893), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51384] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1440), 1, - sym_formal_parameters, + [51294] = 3, + ACTIONS(2101), 1, + anon_sym_LBRACE, + STATE(928), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51395] = 3, - ACTIONS(3024), 1, + [51305] = 3, + ACTIONS(2101), 1, anon_sym_LBRACE, - STATE(909), 1, + STATE(918), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51406] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1450), 1, - sym_formal_parameters, + [51316] = 3, + ACTIONS(2101), 1, + anon_sym_LBRACE, + STATE(916), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51417] = 3, - ACTIONS(2634), 1, + [51327] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1452), 1, + STATE(1559), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51428] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1456), 1, - sym_formal_parameters, + [51338] = 3, + ACTIONS(2101), 1, + anon_sym_LBRACE, + STATE(915), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51439] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1519), 1, - sym_formal_parameters, + [51349] = 3, + ACTIONS(3253), 1, + sym_identifier, + ACTIONS(3255), 1, + sym_jsx_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51450] = 3, - ACTIONS(2634), 1, + [51360] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1524), 1, + STATE(1543), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51461] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1532), 1, - sym_formal_parameters, + [51371] = 3, + ACTIONS(2101), 1, + anon_sym_LBRACE, + STATE(914), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51472] = 3, - ACTIONS(3024), 1, + [51382] = 3, + ACTIONS(2101), 1, anon_sym_LBRACE, - STATE(910), 1, + STATE(904), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51483] = 2, + [51393] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1539), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(512), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51492] = 3, - ACTIONS(2099), 1, + [51404] = 3, + ACTIONS(3227), 1, anon_sym_LBRACE, - STATE(909), 1, + STATE(688), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51503] = 3, - ACTIONS(2709), 1, + [51415] = 3, + ACTIONS(2739), 1, anon_sym_LBRACE, - STATE(722), 1, + STATE(691), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51514] = 3, - ACTIONS(3225), 1, + [51426] = 3, + ACTIONS(3227), 1, anon_sym_LBRACE, - STATE(565), 1, + STATE(692), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51525] = 3, - ACTIONS(3225), 1, + [51437] = 3, + ACTIONS(3227), 1, anon_sym_LBRACE, - STATE(570), 1, + STATE(693), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51536] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1528), 1, - sym_formal_parameters, + [51448] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51547] = 3, - ACTIONS(2099), 1, - anon_sym_LBRACE, - STATE(910), 1, - sym_statement_block, + ACTIONS(1587), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51457] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51558] = 3, - ACTIONS(3217), 1, + ACTIONS(3012), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [51466] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(736), 1, + STATE(400), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51569] = 2, + [51477] = 3, + ACTIONS(2101), 1, + anon_sym_LBRACE, + STATE(896), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3261), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51578] = 3, - ACTIONS(3215), 1, + [51488] = 3, + ACTIONS(3257), 1, anon_sym_LPAREN, - STATE(1472), 1, + STATE(334), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51589] = 3, - ACTIONS(3024), 1, + [51499] = 3, + ACTIONS(2101), 1, anon_sym_LBRACE, - STATE(911), 1, + STATE(895), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51600] = 2, + [51510] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3263), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51609] = 2, + ACTIONS(3259), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [51519] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1424), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3265), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51618] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1417), 1, - sym_formal_parameters, + [51530] = 3, + ACTIONS(2101), 1, + anon_sym_LBRACE, + STATE(927), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51629] = 3, - ACTIONS(2099), 1, + [51541] = 3, + ACTIONS(2101), 1, anon_sym_LBRACE, - STATE(911), 1, + STATE(898), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51640] = 3, - ACTIONS(2483), 1, - anon_sym_COLON, - ACTIONS(3160), 1, - anon_sym_GT, + [51552] = 3, + ACTIONS(2101), 1, + anon_sym_LBRACE, + STATE(900), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51651] = 3, - ACTIONS(2709), 1, + [51563] = 3, + ACTIONS(2101), 1, anon_sym_LBRACE, - STATE(699), 1, - sym_class_body, + STATE(901), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51662] = 3, - ACTIONS(3267), 1, - sym_identifier, - ACTIONS(3269), 1, - anon_sym_STAR, + [51574] = 3, + ACTIONS(2101), 1, + anon_sym_LBRACE, + STATE(902), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51673] = 3, - ACTIONS(2703), 1, + [51585] = 3, + ACTIONS(2739), 1, anon_sym_LBRACE, - STATE(495), 1, + STATE(694), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51684] = 3, - ACTIONS(2634), 1, + [51596] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1426), 1, + STATE(1527), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51695] = 3, - ACTIONS(2489), 1, - anon_sym_DOT, - ACTIONS(3160), 1, - anon_sym_GT, + [51607] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1526), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51706] = 2, + [51618] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1525), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2596), 2, - anon_sym_in, - anon_sym_of, - [51715] = 3, - ACTIONS(2634), 1, + [51629] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1543), 1, + STATE(1523), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51726] = 3, - ACTIONS(2703), 1, - anon_sym_LBRACE, - STATE(574), 1, - sym_class_body, + [51640] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1520), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51737] = 3, - ACTIONS(2634), 1, + [51651] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1392), 1, + STATE(1518), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51748] = 3, - ACTIONS(3225), 1, - anon_sym_LBRACE, - STATE(498), 1, - sym_statement_block, + [51662] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51759] = 3, - ACTIONS(3225), 1, - anon_sym_LBRACE, - STATE(499), 1, - sym_statement_block, + ACTIONS(1672), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51671] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51770] = 3, - ACTIONS(2634), 1, + ACTIONS(1591), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51680] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1477), 1, + STATE(1514), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51781] = 3, - ACTIONS(2634), 1, + [51691] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1544), 1, + STATE(1513), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51792] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3271), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [51801] = 3, - ACTIONS(3225), 1, + [51702] = 3, + ACTIONS(3227), 1, anon_sym_LBRACE, - STATE(496), 1, + STATE(695), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51812] = 3, - ACTIONS(2703), 1, - anon_sym_LBRACE, - STATE(500), 1, - sym_class_body, + [51713] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1511), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51823] = 2, + [51724] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3273), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [51832] = 3, - ACTIONS(2099), 1, + ACTIONS(3261), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51733] = 3, + ACTIONS(3263), 1, anon_sym_LBRACE, - STATE(914), 1, - sym_statement_block, + STATE(1436), 1, + sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51843] = 3, - ACTIONS(2099), 1, + [51744] = 3, + ACTIONS(3227), 1, anon_sym_LBRACE, - STATE(916), 1, + STATE(703), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51854] = 3, - ACTIONS(3275), 1, - anon_sym_LBRACE, - STATE(1367), 1, - sym_object, + [51755] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1509), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51865] = 3, - ACTIONS(2709), 1, - anon_sym_LBRACE, - STATE(742), 1, - sym_class_body, + [51766] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1508), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51876] = 3, - ACTIONS(3217), 1, - anon_sym_LBRACE, - STATE(743), 1, - sym_statement_block, + [51777] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1505), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51887] = 2, + [51788] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1503), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3170), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51896] = 2, + [51799] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1502), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3277), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51905] = 3, - ACTIONS(3024), 1, - anon_sym_LBRACE, - STATE(930), 1, - sym_statement_block, + [51810] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1501), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51916] = 2, + [51821] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1500), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3279), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51925] = 3, - ACTIONS(3225), 1, - anon_sym_LBRACE, - STATE(575), 1, - sym_statement_block, + [51832] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1498), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51936] = 2, + [51843] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1495), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1439), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51945] = 3, - ACTIONS(3217), 1, - anon_sym_LBRACE, - STATE(750), 1, - sym_statement_block, + [51854] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1494), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51956] = 3, - ACTIONS(3219), 1, - anon_sym_LBRACE, - STATE(64), 1, - sym_statement_block, + [51865] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1488), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51967] = 3, - ACTIONS(2483), 1, - anon_sym_COLON, - ACTIONS(3172), 1, - anon_sym_GT, + [51876] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1487), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51978] = 2, + [51887] = 3, + ACTIONS(3211), 1, + anon_sym_LBRACE, + STATE(497), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3059), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [51987] = 3, - ACTIONS(2489), 1, - anon_sym_DOT, - ACTIONS(3172), 1, - anon_sym_GT, + [51898] = 3, + ACTIONS(2739), 1, + anon_sym_LBRACE, + STATE(744), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51998] = 3, - ACTIONS(3217), 1, - anon_sym_LBRACE, - STATE(752), 1, - sym_statement_block, + [51909] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1486), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52009] = 3, - ACTIONS(3217), 1, + [51920] = 3, + ACTIONS(3227), 1, anon_sym_LBRACE, - STATE(659), 1, + STATE(717), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52020] = 3, - ACTIONS(2823), 1, - sym_identifier, - ACTIONS(2827), 1, - sym_private_property_identifier, + [51931] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1485), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52031] = 2, + [51942] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1484), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3281), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52040] = 3, - ACTIONS(2992), 1, - anon_sym_from, - STATE(1368), 1, - sym__from_clause, + [51953] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1483), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52051] = 3, - ACTIONS(2634), 1, + [51964] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1478), 1, + STATE(1482), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52062] = 3, - ACTIONS(3215), 1, + [51975] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(39), 1, - sym_parenthesized_expression, + STATE(1360), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52073] = 3, - ACTIONS(2709), 1, + [51986] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1478), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51997] = 3, + ACTIONS(2739), 1, anon_sym_LBRACE, STATE(655), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52084] = 3, - ACTIONS(2099), 1, + [52008] = 3, + ACTIONS(2101), 1, anon_sym_LBRACE, - STATE(922), 1, + STATE(910), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52095] = 3, - ACTIONS(2099), 1, - anon_sym_LBRACE, - STATE(923), 1, - sym_statement_block, + [52019] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52106] = 3, - ACTIONS(2099), 1, + ACTIONS(3069), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52028] = 3, + ACTIONS(2101), 1, anon_sym_LBRACE, - STATE(924), 1, + STATE(899), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52117] = 3, - ACTIONS(3217), 1, + [52039] = 3, + ACTIONS(2785), 1, anon_sym_LBRACE, - STATE(654), 1, - sym_statement_block, + STATE(507), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52128] = 3, - ACTIONS(2634), 1, + [52050] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1365), 1, + STATE(1443), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52139] = 3, - ACTIONS(2099), 1, + [52061] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(925), 1, + STATE(908), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52150] = 3, - ACTIONS(3229), 1, - anon_sym_LBRACE, - STATE(330), 1, - sym_statement_block, + [52072] = 3, + ACTIONS(2493), 1, + anon_sym_DOT, + ACTIONS(3078), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52161] = 3, - ACTIONS(2099), 1, - anon_sym_LBRACE, - STATE(927), 1, - sym_statement_block, + [52083] = 3, + ACTIONS(2487), 1, + anon_sym_COLON, + ACTIONS(3078), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52172] = 3, - ACTIONS(2099), 1, - anon_sym_LBRACE, - STATE(928), 1, - sym_statement_block, + [52094] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52183] = 3, - ACTIONS(2099), 1, - anon_sym_LBRACE, - STATE(929), 1, - sym_statement_block, + ACTIONS(3265), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52103] = 3, + ACTIONS(2087), 1, + anon_sym_LPAREN, + ACTIONS(3267), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52194] = 3, - ACTIONS(3024), 1, + [52114] = 3, + ACTIONS(3227), 1, anon_sym_LBRACE, - STATE(894), 1, + STATE(743), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52205] = 3, - ACTIONS(3024), 1, - anon_sym_LBRACE, - STATE(895), 1, - sym_statement_block, + [52125] = 3, + ACTIONS(2087), 1, + anon_sym_LPAREN, + ACTIONS(2281), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52216] = 3, - ACTIONS(3283), 1, - sym_identifier, - ACTIONS(3285), 1, - anon_sym_STAR, + [52136] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52227] = 3, - ACTIONS(3024), 1, - anon_sym_LBRACE, - STATE(896), 1, - sym_statement_block, + ACTIONS(3076), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52145] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1461), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52238] = 3, - ACTIONS(3024), 1, + [52156] = 3, + ACTIONS(3211), 1, anon_sym_LBRACE, - STATE(897), 1, + STATE(519), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52249] = 3, - ACTIONS(3024), 1, + [52167] = 3, + ACTIONS(3211), 1, anon_sym_LBRACE, - STATE(915), 1, + STATE(538), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52260] = 3, - ACTIONS(3024), 1, - anon_sym_LBRACE, - STATE(919), 1, - sym_statement_block, + [52178] = 3, + ACTIONS(3269), 1, + anon_sym_SEMI, + ACTIONS(3271), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52271] = 3, - ACTIONS(3024), 1, + [52189] = 3, + ACTIONS(2739), 1, anon_sym_LBRACE, - STATE(893), 1, - sym_statement_block, + STATE(721), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52282] = 2, + [52200] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1627), 2, + ACTIONS(1465), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52291] = 3, - ACTIONS(3217), 1, - anon_sym_LBRACE, - STATE(656), 1, - sym_statement_block, + [52209] = 3, + ACTIONS(3273), 1, + anon_sym_SEMI, + ACTIONS(3275), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52302] = 3, - ACTIONS(2634), 1, + [52220] = 3, + ACTIONS(2638), 1, anon_sym_LPAREN, - STATE(1455), 1, + STATE(1463), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52313] = 3, - ACTIONS(2709), 1, - anon_sym_LBRACE, - STATE(715), 1, - sym_class_body, + [52231] = 3, + ACTIONS(3277), 1, + sym_identifier, + ACTIONS(3279), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52324] = 3, - ACTIONS(3217), 1, + [52242] = 3, + ACTIONS(2101), 1, anon_sym_LBRACE, - STATE(657), 1, + STATE(908), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52335] = 3, - ACTIONS(2634), 1, - anon_sym_LPAREN, - STATE(1461), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [52346] = 3, - ACTIONS(2099), 1, + [52253] = 3, + ACTIONS(3018), 1, anon_sym_LBRACE, - STATE(894), 1, + STATE(295), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52357] = 3, - ACTIONS(2634), 1, + [52264] = 3, + ACTIONS(3243), 1, anon_sym_LPAREN, - STATE(1466), 1, - sym_formal_parameters, + STATE(33), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52368] = 3, - ACTIONS(2634), 1, + [52275] = 3, + ACTIONS(3243), 1, anon_sym_LPAREN, - STATE(1373), 1, - sym_formal_parameters, + STATE(1370), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52379] = 2, - ACTIONS(3287), 1, - anon_sym_from, + [52286] = 3, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(44), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52387] = 2, - ACTIONS(1615), 1, - anon_sym_in, + [52297] = 3, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(36), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52395] = 2, - ACTIONS(2909), 1, - anon_sym_EQ, + [52308] = 3, + ACTIONS(3281), 1, + anon_sym_SEMI, + ACTIONS(3283), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52403] = 2, - ACTIONS(3237), 1, - anon_sym_EQ_GT, + [52319] = 3, + ACTIONS(2785), 1, + anon_sym_LBRACE, + STATE(499), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52411] = 2, - ACTIONS(3160), 1, - anon_sym_GT, + [52330] = 3, + ACTIONS(2815), 1, + sym_identifier, + ACTIONS(2819), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52419] = 2, - ACTIONS(3289), 1, - anon_sym_EQ_GT, + [52341] = 3, + ACTIONS(3285), 1, + sym_identifier, + ACTIONS(3287), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52427] = 2, - ACTIONS(1693), 1, - anon_sym_RPAREN, + [52352] = 3, + ACTIONS(2767), 1, + sym_identifier, + ACTIONS(2771), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52435] = 2, - ACTIONS(1728), 1, - anon_sym_RPAREN, + [52363] = 3, + ACTIONS(3289), 1, + sym_identifier, + ACTIONS(3291), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52443] = 2, - ACTIONS(3291), 1, - sym_identifier, + [52374] = 3, + ACTIONS(3227), 1, + anon_sym_LBRACE, + STATE(742), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52451] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [52385] = 3, + ACTIONS(2638), 1, + anon_sym_LPAREN, + STATE(1489), 1, + sym_formal_parameters, + ACTIONS(5), 2, sym_html_comment, + sym_comment, + [52396] = 2, ACTIONS(3293), 1, - sym_regex_pattern, - [52461] = 2, - ACTIONS(3295), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52469] = 2, - ACTIONS(3297), 1, + [52404] = 2, + ACTIONS(3295), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52477] = 2, - ACTIONS(3299), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [52485] = 2, + [52412] = 2, ACTIONS(2087), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52493] = 2, - ACTIONS(3301), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, + [52420] = 3, + ACTIONS(3), 1, sym_comment, - [52501] = 2, - ACTIONS(3111), 1, - anon_sym_GT, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(3297), 1, + sym_regex_pattern, + [52430] = 3, + ACTIONS(3), 1, sym_comment, - [52509] = 2, - ACTIONS(3303), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [52517] = 2, - ACTIONS(1738), 1, - anon_sym_RBRACE, + ACTIONS(3299), 1, + sym_regex_pattern, + [52440] = 2, + ACTIONS(3301), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52525] = 2, - ACTIONS(3305), 1, - anon_sym_EQ_GT, + [52448] = 2, + ACTIONS(3193), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52533] = 2, - ACTIONS(1736), 1, - anon_sym_RPAREN, + [52456] = 2, + ACTIONS(3303), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52541] = 2, - ACTIONS(1750), 1, - anon_sym_RBRACK, + [52464] = 2, + ACTIONS(3305), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52549] = 2, - ACTIONS(2765), 1, - anon_sym_EQ, + [52472] = 2, + ACTIONS(1656), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52557] = 2, + [52480] = 2, ACTIONS(3307), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52565] = 2, + [52488] = 2, ACTIONS(3309), 1, - anon_sym_RPAREN, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [52496] = 2, ACTIONS(3311), 1, - anon_sym_SLASH2, - [52583] = 2, - ACTIONS(1746), 1, - anon_sym_RPAREN, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52591] = 2, + [52504] = 2, ACTIONS(3313), 1, - anon_sym_EQ, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52599] = 2, + [52512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(3315), 1, + anon_sym_SLASH2, + [52522] = 2, + ACTIONS(3317), 1, anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52607] = 2, - ACTIONS(3317), 1, - sym_identifier, + [52530] = 2, + ACTIONS(3054), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52615] = 2, + [52538] = 2, ACTIONS(3319), 1, - anon_sym_from, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52623] = 2, + [52546] = 2, ACTIONS(3321), 1, - sym_identifier, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52631] = 2, + [52554] = 2, ACTIONS(3323), 1, - anon_sym_as, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52639] = 2, - ACTIONS(3077), 1, - anon_sym_GT, + [52562] = 2, + ACTIONS(3267), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52647] = 2, - ACTIONS(3135), 1, - anon_sym_RBRACE, + [52570] = 2, + ACTIONS(3325), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52655] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [52578] = 2, + ACTIONS(2281), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3325), 1, - anon_sym_SLASH2, - [52665] = 2, + sym_comment, + [52586] = 2, ACTIONS(3327), 1, - sym_identifier, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52673] = 2, - ACTIONS(1756), 1, - anon_sym_RBRACE, + [52594] = 2, + ACTIONS(1758), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52681] = 2, + [52602] = 2, ACTIONS(3329), 1, - anon_sym_EQ_GT, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52689] = 2, - ACTIONS(3010), 1, - anon_sym_EQ, + [52610] = 2, + ACTIONS(3331), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [52618] = 2, + ACTIONS(1746), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3331), 1, - anon_sym_SLASH2, - [52707] = 2, + sym_comment, + [52626] = 2, ACTIONS(3333), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52715] = 2, - ACTIONS(3172), 1, - anon_sym_GT, + [52634] = 2, + ACTIONS(1697), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52723] = 2, - ACTIONS(3335), 1, - anon_sym_while, + [52642] = 2, + ACTIONS(1703), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52731] = 2, - ACTIONS(3337), 1, - ts_builtin_sym_end, + [52650] = 2, + ACTIONS(3056), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52739] = 2, - ACTIONS(3339), 1, + [52658] = 2, + ACTIONS(3335), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52747] = 3, + [52666] = 2, + ACTIONS(3337), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52674] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3341), 1, + ACTIONS(3339), 1, sym_regex_pattern, - [52757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [52684] = 2, + ACTIONS(3341), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, + sym_comment, + [52692] = 2, ACTIONS(3343), 1, - anon_sym_SLASH2, - [52767] = 2, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52700] = 2, ACTIONS(3345), 1, - sym_identifier, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52775] = 2, - ACTIONS(1758), 1, - anon_sym_RPAREN, + [52708] = 2, + ACTIONS(3347), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52783] = 2, - ACTIONS(1724), 1, - anon_sym_RBRACK, + [52716] = 2, + ACTIONS(3124), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52724] = 2, + ACTIONS(1732), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52791] = 3, + [52732] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3347), 1, - sym_regex_pattern, - [52801] = 2, ACTIONS(3349), 1, - anon_sym_as, + anon_sym_SLASH2, + [52742] = 2, + ACTIONS(3351), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52809] = 2, - ACTIONS(1695), 1, - anon_sym_RBRACK, + [52750] = 2, + ACTIONS(1701), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52817] = 2, - ACTIONS(3351), 1, - sym_identifier, + [52758] = 2, + ACTIONS(3160), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52825] = 2, - ACTIONS(3353), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, + [52766] = 3, + ACTIONS(3), 1, sym_comment, - [52833] = 2, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3353), 1, + anon_sym_SLASH2, + [52776] = 2, ACTIONS(3355), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52841] = 2, - ACTIONS(3053), 1, - anon_sym_RBRACE, + [52784] = 2, + ACTIONS(3357), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52849] = 2, - ACTIONS(1672), 1, - anon_sym_in, + [52792] = 2, + ACTIONS(3359), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52857] = 2, - ACTIONS(1778), 1, - anon_sym_in, + [52800] = 2, + ACTIONS(1724), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52865] = 2, - ACTIONS(3357), 1, - sym_identifier, + [52808] = 2, + ACTIONS(3203), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52873] = 2, - ACTIONS(2279), 1, - anon_sym_EQ_GT, + [52816] = 2, + ACTIONS(3361), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52881] = 2, - ACTIONS(3359), 1, - anon_sym_from, + [52824] = 2, + ACTIONS(1734), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52889] = 2, - ACTIONS(3361), 1, - anon_sym_EQ, + [52832] = 2, + ACTIONS(3317), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52897] = 2, + [52840] = 2, ACTIONS(3363), 1, - anon_sym_EQ_GT, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52905] = 2, - ACTIONS(1714), 1, + [52848] = 2, + ACTIONS(1695), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52913] = 2, - ACTIONS(1381), 1, - anon_sym_in, + [52856] = 2, + ACTIONS(1738), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52921] = 2, - ACTIONS(1752), 1, - anon_sym_COLON, + [52864] = 2, + ACTIONS(3365), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52929] = 2, - ACTIONS(3365), 1, - anon_sym_function, + [52872] = 2, + ACTIONS(2936), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52937] = 2, - ACTIONS(1720), 1, - anon_sym_RBRACK, + [52880] = 2, + ACTIONS(3367), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52945] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3367), 1, - sym_regex_pattern, - [52955] = 2, - ACTIONS(1732), 1, + [52888] = 2, + ACTIONS(1744), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52963] = 2, - ACTIONS(1850), 1, + [52896] = 2, + ACTIONS(1793), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52971] = 2, + [52904] = 2, ACTIONS(3369), 1, - anon_sym_EQ_GT, + anon_sym_target, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52912] = 2, + ACTIONS(1699), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52979] = 2, + [52920] = 2, ACTIONS(3371), 1, - anon_sym_EQ_GT, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52987] = 2, - ACTIONS(3373), 1, - anon_sym_EQ_GT, + [52928] = 2, + ACTIONS(1714), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52995] = 2, - ACTIONS(3375), 1, - anon_sym_EQ_GT, + [52936] = 2, + ACTIONS(3373), 1, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53003] = 2, - ACTIONS(3377), 1, - anon_sym_EQ_GT, + [52944] = 2, + ACTIONS(3375), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53011] = 2, - ACTIONS(1722), 1, - anon_sym_RBRACE, + [52952] = 2, + ACTIONS(3377), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53019] = 2, + [52960] = 2, ACTIONS(3379), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53027] = 2, + [52968] = 2, ACTIONS(3381), 1, - anon_sym_EQ_GT, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53035] = 2, + [52976] = 2, + ACTIONS(3038), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52984] = 2, ACTIONS(3383), 1, - anon_sym_COLON, + ts_builtin_sym_end, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53043] = 2, - ACTIONS(3385), 1, - anon_sym_from, + [52992] = 2, + ACTIONS(1730), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53051] = 2, - ACTIONS(1726), 1, - anon_sym_RPAREN, + [53000] = 2, + ACTIONS(1830), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53059] = 2, - ACTIONS(1754), 1, - anon_sym_RPAREN, + [53008] = 2, + ACTIONS(1617), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53067] = 2, - ACTIONS(3387), 1, - anon_sym_from, + [53016] = 2, + ACTIONS(3385), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53075] = 2, - ACTIONS(3249), 1, - anon_sym_from, + [53024] = 2, + ACTIONS(3387), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53083] = 2, + [53032] = 2, ACTIONS(3389), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53091] = 2, + [53040] = 2, ACTIONS(3391), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53099] = 2, + [53048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(3393), 1, - anon_sym_RPAREN, + sym_regex_pattern, + [53058] = 2, + ACTIONS(3078), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53066] = 2, + ACTIONS(1742), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53074] = 2, + ACTIONS(1740), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53082] = 2, + ACTIONS(1395), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53090] = 2, + ACTIONS(2715), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53107] = 2, + [53098] = 2, ACTIONS(3395), 1, - anon_sym_target, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53106] = 2, + ACTIONS(3369), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53115] = 2, + [53114] = 2, ACTIONS(3397), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53123] = 2, + [53122] = 2, ACTIONS(3399), 1, - sym_identifier, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53130] = 2, + ACTIONS(1718), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3401), 1, + anon_sym_SLASH2, + [53148] = 2, + ACTIONS(3403), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53156] = 2, + ACTIONS(3405), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -79229,32 +79280,32 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(311)] = 0, - [SMALL_STATE(312)] = 89, + [SMALL_STATE(312)] = 75, [SMALL_STATE(313)] = 164, - [SMALL_STATE(314)] = 250, - [SMALL_STATE(315)] = 322, - [SMALL_STATE(316)] = 412, - [SMALL_STATE(317)] = 482, - [SMALL_STATE(318)] = 554, - [SMALL_STATE(319)] = 626, - [SMALL_STATE(320)] = 698, - [SMALL_STATE(321)] = 770, - [SMALL_STATE(322)] = 856, - [SMALL_STATE(323)] = 926, - [SMALL_STATE(324)] = 998, - [SMALL_STATE(325)] = 1068, - [SMALL_STATE(326)] = 1138, - [SMALL_STATE(327)] = 1208, - [SMALL_STATE(328)] = 1282, - [SMALL_STATE(329)] = 1354, - [SMALL_STATE(330)] = 1424, - [SMALL_STATE(331)] = 1496, - [SMALL_STATE(332)] = 1582, - [SMALL_STATE(333)] = 1654, - [SMALL_STATE(334)] = 1724, - [SMALL_STATE(335)] = 1794, - [SMALL_STATE(336)] = 1866, - [SMALL_STATE(337)] = 1938, + [SMALL_STATE(314)] = 234, + [SMALL_STATE(315)] = 308, + [SMALL_STATE(316)] = 378, + [SMALL_STATE(317)] = 450, + [SMALL_STATE(318)] = 522, + [SMALL_STATE(319)] = 592, + [SMALL_STATE(320)] = 682, + [SMALL_STATE(321)] = 768, + [SMALL_STATE(322)] = 840, + [SMALL_STATE(323)] = 910, + [SMALL_STATE(324)] = 980, + [SMALL_STATE(325)] = 1050, + [SMALL_STATE(326)] = 1122, + [SMALL_STATE(327)] = 1194, + [SMALL_STATE(328)] = 1264, + [SMALL_STATE(329)] = 1336, + [SMALL_STATE(330)] = 1406, + [SMALL_STATE(331)] = 1492, + [SMALL_STATE(332)] = 1564, + [SMALL_STATE(333)] = 1634, + [SMALL_STATE(334)] = 1706, + [SMALL_STATE(335)] = 1778, + [SMALL_STATE(336)] = 1850, + [SMALL_STATE(337)] = 1936, [SMALL_STATE(338)] = 2008, [SMALL_STATE(339)] = 2077, [SMALL_STATE(340)] = 2146, @@ -79267,56 +79318,56 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(347)] = 2629, [SMALL_STATE(348)] = 2698, [SMALL_STATE(349)] = 2767, - [SMALL_STATE(350)] = 2836, - [SMALL_STATE(351)] = 2905, - [SMALL_STATE(352)] = 2974, - [SMALL_STATE(353)] = 3043, - [SMALL_STATE(354)] = 3112, - [SMALL_STATE(355)] = 3181, - [SMALL_STATE(356)] = 3250, - [SMALL_STATE(357)] = 3319, - [SMALL_STATE(358)] = 3388, - [SMALL_STATE(359)] = 3457, - [SMALL_STATE(360)] = 3526, - [SMALL_STATE(361)] = 3595, - [SMALL_STATE(362)] = 3682, - [SMALL_STATE(363)] = 3751, - [SMALL_STATE(364)] = 3820, - [SMALL_STATE(365)] = 3889, - [SMALL_STATE(366)] = 3958, - [SMALL_STATE(367)] = 4027, - [SMALL_STATE(368)] = 4096, - [SMALL_STATE(369)] = 4185, - [SMALL_STATE(370)] = 4254, - [SMALL_STATE(371)] = 4323, - [SMALL_STATE(372)] = 4392, - [SMALL_STATE(373)] = 4461, - [SMALL_STATE(374)] = 4530, - [SMALL_STATE(375)] = 4599, - [SMALL_STATE(376)] = 4688, - [SMALL_STATE(377)] = 4757, - [SMALL_STATE(378)] = 4844, - [SMALL_STATE(379)] = 4913, - [SMALL_STATE(380)] = 4982, - [SMALL_STATE(381)] = 5051, - [SMALL_STATE(382)] = 5120, - [SMALL_STATE(383)] = 5189, - [SMALL_STATE(384)] = 5258, - [SMALL_STATE(385)] = 5327, - [SMALL_STATE(386)] = 5396, - [SMALL_STATE(387)] = 5465, - [SMALL_STATE(388)] = 5534, - [SMALL_STATE(389)] = 5603, - [SMALL_STATE(390)] = 5672, - [SMALL_STATE(391)] = 5741, - [SMALL_STATE(392)] = 5810, - [SMALL_STATE(393)] = 5879, - [SMALL_STATE(394)] = 5948, - [SMALL_STATE(395)] = 6017, - [SMALL_STATE(396)] = 6086, - [SMALL_STATE(397)] = 6155, - [SMALL_STATE(398)] = 6240, - [SMALL_STATE(399)] = 6309, + [SMALL_STATE(350)] = 2856, + [SMALL_STATE(351)] = 2925, + [SMALL_STATE(352)] = 2994, + [SMALL_STATE(353)] = 3063, + [SMALL_STATE(354)] = 3132, + [SMALL_STATE(355)] = 3217, + [SMALL_STATE(356)] = 3302, + [SMALL_STATE(357)] = 3371, + [SMALL_STATE(358)] = 3440, + [SMALL_STATE(359)] = 3509, + [SMALL_STATE(360)] = 3578, + [SMALL_STATE(361)] = 3647, + [SMALL_STATE(362)] = 3716, + [SMALL_STATE(363)] = 3785, + [SMALL_STATE(364)] = 3854, + [SMALL_STATE(365)] = 3923, + [SMALL_STATE(366)] = 3992, + [SMALL_STATE(367)] = 4061, + [SMALL_STATE(368)] = 4130, + [SMALL_STATE(369)] = 4199, + [SMALL_STATE(370)] = 4268, + [SMALL_STATE(371)] = 4337, + [SMALL_STATE(372)] = 4406, + [SMALL_STATE(373)] = 4475, + [SMALL_STATE(374)] = 4544, + [SMALL_STATE(375)] = 4613, + [SMALL_STATE(376)] = 4682, + [SMALL_STATE(377)] = 4751, + [SMALL_STATE(378)] = 4820, + [SMALL_STATE(379)] = 4889, + [SMALL_STATE(380)] = 4976, + [SMALL_STATE(381)] = 5045, + [SMALL_STATE(382)] = 5114, + [SMALL_STATE(383)] = 5183, + [SMALL_STATE(384)] = 5252, + [SMALL_STATE(385)] = 5321, + [SMALL_STATE(386)] = 5408, + [SMALL_STATE(387)] = 5477, + [SMALL_STATE(388)] = 5546, + [SMALL_STATE(389)] = 5615, + [SMALL_STATE(390)] = 5684, + [SMALL_STATE(391)] = 5753, + [SMALL_STATE(392)] = 5822, + [SMALL_STATE(393)] = 5891, + [SMALL_STATE(394)] = 5960, + [SMALL_STATE(395)] = 6029, + [SMALL_STATE(396)] = 6098, + [SMALL_STATE(397)] = 6167, + [SMALL_STATE(398)] = 6236, + [SMALL_STATE(399)] = 6325, [SMALL_STATE(400)] = 6394, [SMALL_STATE(401)] = 6463, [SMALL_STATE(402)] = 6532, @@ -79325,79 +79376,79 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(405)] = 6779, [SMALL_STATE(406)] = 6861, [SMALL_STATE(407)] = 6926, - [SMALL_STATE(408)] = 6991, - [SMALL_STATE(409)] = 7056, - [SMALL_STATE(410)] = 7121, - [SMALL_STATE(411)] = 7186, - [SMALL_STATE(412)] = 7251, - [SMALL_STATE(413)] = 7334, + [SMALL_STATE(408)] = 7009, + [SMALL_STATE(409)] = 7078, + [SMALL_STATE(410)] = 7143, + [SMALL_STATE(411)] = 7208, + [SMALL_STATE(412)] = 7273, + [SMALL_STATE(413)] = 7338, [SMALL_STATE(414)] = 7403, [SMALL_STATE(415)] = 7468, [SMALL_STATE(416)] = 7532, [SMALL_STATE(417)] = 7602, [SMALL_STATE(418)] = 7672, - [SMALL_STATE(419)] = 7742, - [SMALL_STATE(420)] = 7812, - [SMALL_STATE(421)] = 7876, + [SMALL_STATE(419)] = 7736, + [SMALL_STATE(420)] = 7800, + [SMALL_STATE(421)] = 7870, [SMALL_STATE(422)] = 7940, [SMALL_STATE(423)] = 8004, [SMALL_STATE(424)] = 8068, [SMALL_STATE(425)] = 8132, [SMALL_STATE(426)] = 8196, [SMALL_STATE(427)] = 8260, - [SMALL_STATE(428)] = 8323, - [SMALL_STATE(429)] = 8394, - [SMALL_STATE(430)] = 8467, - [SMALL_STATE(431)] = 8536, - [SMALL_STATE(432)] = 8605, - [SMALL_STATE(433)] = 8674, - [SMALL_STATE(434)] = 8743, - [SMALL_STATE(435)] = 8814, - [SMALL_STATE(436)] = 8883, - [SMALL_STATE(437)] = 8956, - [SMALL_STATE(438)] = 9025, - [SMALL_STATE(439)] = 9096, - [SMALL_STATE(440)] = 9167, - [SMALL_STATE(441)] = 9234, - [SMALL_STATE(442)] = 9297, - [SMALL_STATE(443)] = 9360, - [SMALL_STATE(444)] = 9431, - [SMALL_STATE(445)] = 9502, - [SMALL_STATE(446)] = 9573, - [SMALL_STATE(447)] = 9636, - [SMALL_STATE(448)] = 9699, - [SMALL_STATE(449)] = 9768, - [SMALL_STATE(450)] = 9831, - [SMALL_STATE(451)] = 9894, - [SMALL_STATE(452)] = 9961, - [SMALL_STATE(453)] = 10032, - [SMALL_STATE(454)] = 10103, - [SMALL_STATE(455)] = 10172, + [SMALL_STATE(428)] = 8331, + [SMALL_STATE(429)] = 8402, + [SMALL_STATE(430)] = 8473, + [SMALL_STATE(431)] = 8546, + [SMALL_STATE(432)] = 8609, + [SMALL_STATE(433)] = 8678, + [SMALL_STATE(434)] = 8747, + [SMALL_STATE(435)] = 8816, + [SMALL_STATE(436)] = 8889, + [SMALL_STATE(437)] = 8952, + [SMALL_STATE(438)] = 9023, + [SMALL_STATE(439)] = 9094, + [SMALL_STATE(440)] = 9157, + [SMALL_STATE(441)] = 9224, + [SMALL_STATE(442)] = 9293, + [SMALL_STATE(443)] = 9362, + [SMALL_STATE(444)] = 9433, + [SMALL_STATE(445)] = 9504, + [SMALL_STATE(446)] = 9575, + [SMALL_STATE(447)] = 9638, + [SMALL_STATE(448)] = 9701, + [SMALL_STATE(449)] = 9764, + [SMALL_STATE(450)] = 9827, + [SMALL_STATE(451)] = 9896, + [SMALL_STATE(452)] = 9965, + [SMALL_STATE(453)] = 10036, + [SMALL_STATE(454)] = 10107, + [SMALL_STATE(455)] = 10174, [SMALL_STATE(456)] = 10243, - [SMALL_STATE(457)] = 10313, - [SMALL_STATE(458)] = 10383, - [SMALL_STATE(459)] = 10449, + [SMALL_STATE(457)] = 10311, + [SMALL_STATE(458)] = 10379, + [SMALL_STATE(459)] = 10447, [SMALL_STATE(460)] = 10517, [SMALL_STATE(461)] = 10583, - [SMALL_STATE(462)] = 10651, - [SMALL_STATE(463)] = 10719, + [SMALL_STATE(462)] = 10653, + [SMALL_STATE(463)] = 10723, [SMALL_STATE(464)] = 10789, [SMALL_STATE(465)] = 10860, - [SMALL_STATE(466)] = 10927, + [SMALL_STATE(466)] = 10931, [SMALL_STATE(467)] = 10998, [SMALL_STATE(468)] = 11065, [SMALL_STATE(469)] = 11132, - [SMALL_STATE(470)] = 11202, - [SMALL_STATE(471)] = 11270, - [SMALL_STATE(472)] = 11340, + [SMALL_STATE(470)] = 11200, + [SMALL_STATE(471)] = 11266, + [SMALL_STATE(472)] = 11336, [SMALL_STATE(473)] = 11406, [SMALL_STATE(474)] = 11472, [SMALL_STATE(475)] = 11538, [SMALL_STATE(476)] = 11604, - [SMALL_STATE(477)] = 11671, + [SMALL_STATE(477)] = 11667, [SMALL_STATE(478)] = 11734, - [SMALL_STATE(479)] = 11797, - [SMALL_STATE(480)] = 11852, + [SMALL_STATE(479)] = 11789, + [SMALL_STATE(480)] = 11854, [SMALL_STATE(481)] = 11917, [SMALL_STATE(482)] = 11982, [SMALL_STATE(483)] = 12042, @@ -79408,352 +79459,352 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(488)] = 12306, [SMALL_STATE(489)] = 12360, [SMALL_STATE(490)] = 12414, - [SMALL_STATE(491)] = 12509, - [SMALL_STATE(492)] = 12558, - [SMALL_STATE(493)] = 12607, - [SMALL_STATE(494)] = 12670, - [SMALL_STATE(495)] = 12731, - [SMALL_STATE(496)] = 12780, - [SMALL_STATE(497)] = 12829, - [SMALL_STATE(498)] = 12878, - [SMALL_STATE(499)] = 12927, - [SMALL_STATE(500)] = 12976, - [SMALL_STATE(501)] = 13025, - [SMALL_STATE(502)] = 13074, - [SMALL_STATE(503)] = 13123, - [SMALL_STATE(504)] = 13178, - [SMALL_STATE(505)] = 13227, - [SMALL_STATE(506)] = 13322, - [SMALL_STATE(507)] = 13371, - [SMALL_STATE(508)] = 13420, - [SMALL_STATE(509)] = 13469, - [SMALL_STATE(510)] = 13518, - [SMALL_STATE(511)] = 13567, - [SMALL_STATE(512)] = 13616, - [SMALL_STATE(513)] = 13711, - [SMALL_STATE(514)] = 13760, - [SMALL_STATE(515)] = 13855, - [SMALL_STATE(516)] = 13904, - [SMALL_STATE(517)] = 13953, - [SMALL_STATE(518)] = 14004, - [SMALL_STATE(519)] = 14055, - [SMALL_STATE(520)] = 14150, - [SMALL_STATE(521)] = 14199, - [SMALL_STATE(522)] = 14248, - [SMALL_STATE(523)] = 14297, - [SMALL_STATE(524)] = 14346, - [SMALL_STATE(525)] = 14395, - [SMALL_STATE(526)] = 14444, - [SMALL_STATE(527)] = 14493, - [SMALL_STATE(528)] = 14542, - [SMALL_STATE(529)] = 14593, - [SMALL_STATE(530)] = 14642, - [SMALL_STATE(531)] = 14737, - [SMALL_STATE(532)] = 14786, - [SMALL_STATE(533)] = 14881, - [SMALL_STATE(534)] = 14956, - [SMALL_STATE(535)] = 15005, - [SMALL_STATE(536)] = 15070, - [SMALL_STATE(537)] = 15165, - [SMALL_STATE(538)] = 15252, - [SMALL_STATE(539)] = 15301, - [SMALL_STATE(540)] = 15372, - [SMALL_STATE(541)] = 15455, - [SMALL_STATE(542)] = 15540, - [SMALL_STATE(543)] = 15627, - [SMALL_STATE(544)] = 15696, - [SMALL_STATE(545)] = 15761, - [SMALL_STATE(546)] = 15840, - [SMALL_STATE(547)] = 15931, - [SMALL_STATE(548)] = 15980, - [SMALL_STATE(549)] = 16029, - [SMALL_STATE(550)] = 16078, - [SMALL_STATE(551)] = 16173, - [SMALL_STATE(552)] = 16222, - [SMALL_STATE(553)] = 16317, - [SMALL_STATE(554)] = 16366, - [SMALL_STATE(555)] = 16415, - [SMALL_STATE(556)] = 16464, - [SMALL_STATE(557)] = 16513, - [SMALL_STATE(558)] = 16562, - [SMALL_STATE(559)] = 16611, - [SMALL_STATE(560)] = 16660, - [SMALL_STATE(561)] = 16709, - [SMALL_STATE(562)] = 16758, - [SMALL_STATE(563)] = 16807, - [SMALL_STATE(564)] = 16856, - [SMALL_STATE(565)] = 16951, - [SMALL_STATE(566)] = 17000, - [SMALL_STATE(567)] = 17049, - [SMALL_STATE(568)] = 17144, - [SMALL_STATE(569)] = 17193, - [SMALL_STATE(570)] = 17288, - [SMALL_STATE(571)] = 17337, - [SMALL_STATE(572)] = 17386, - [SMALL_STATE(573)] = 17435, - [SMALL_STATE(574)] = 17484, - [SMALL_STATE(575)] = 17533, - [SMALL_STATE(576)] = 17582, - [SMALL_STATE(577)] = 17631, - [SMALL_STATE(578)] = 17680, - [SMALL_STATE(579)] = 17729, - [SMALL_STATE(580)] = 17778, - [SMALL_STATE(581)] = 17827, - [SMALL_STATE(582)] = 17890, + [SMALL_STATE(491)] = 12463, + [SMALL_STATE(492)] = 12512, + [SMALL_STATE(493)] = 12561, + [SMALL_STATE(494)] = 12610, + [SMALL_STATE(495)] = 12705, + [SMALL_STATE(496)] = 12754, + [SMALL_STATE(497)] = 12849, + [SMALL_STATE(498)] = 12898, + [SMALL_STATE(499)] = 12947, + [SMALL_STATE(500)] = 12996, + [SMALL_STATE(501)] = 13045, + [SMALL_STATE(502)] = 13094, + [SMALL_STATE(503)] = 13143, + [SMALL_STATE(504)] = 13192, + [SMALL_STATE(505)] = 13287, + [SMALL_STATE(506)] = 13338, + [SMALL_STATE(507)] = 13387, + [SMALL_STATE(508)] = 13436, + [SMALL_STATE(509)] = 13485, + [SMALL_STATE(510)] = 13534, + [SMALL_STATE(511)] = 13583, + [SMALL_STATE(512)] = 13632, + [SMALL_STATE(513)] = 13695, + [SMALL_STATE(514)] = 13744, + [SMALL_STATE(515)] = 13793, + [SMALL_STATE(516)] = 13844, + [SMALL_STATE(517)] = 13893, + [SMALL_STATE(518)] = 13942, + [SMALL_STATE(519)] = 13991, + [SMALL_STATE(520)] = 14040, + [SMALL_STATE(521)] = 14089, + [SMALL_STATE(522)] = 14138, + [SMALL_STATE(523)] = 14233, + [SMALL_STATE(524)] = 14328, + [SMALL_STATE(525)] = 14377, + [SMALL_STATE(526)] = 14472, + [SMALL_STATE(527)] = 14523, + [SMALL_STATE(528)] = 14618, + [SMALL_STATE(529)] = 14667, + [SMALL_STATE(530)] = 14716, + [SMALL_STATE(531)] = 14811, + [SMALL_STATE(532)] = 14860, + [SMALL_STATE(533)] = 14909, + [SMALL_STATE(534)] = 15004, + [SMALL_STATE(535)] = 15079, + [SMALL_STATE(536)] = 15128, + [SMALL_STATE(537)] = 15177, + [SMALL_STATE(538)] = 15226, + [SMALL_STATE(539)] = 15275, + [SMALL_STATE(540)] = 15370, + [SMALL_STATE(541)] = 15433, + [SMALL_STATE(542)] = 15494, + [SMALL_STATE(543)] = 15543, + [SMALL_STATE(544)] = 15608, + [SMALL_STATE(545)] = 15657, + [SMALL_STATE(546)] = 15752, + [SMALL_STATE(547)] = 15839, + [SMALL_STATE(548)] = 15888, + [SMALL_STATE(549)] = 15977, + [SMALL_STATE(550)] = 16026, + [SMALL_STATE(551)] = 16075, + [SMALL_STATE(552)] = 16124, + [SMALL_STATE(553)] = 16219, + [SMALL_STATE(554)] = 16290, + [SMALL_STATE(555)] = 16373, + [SMALL_STATE(556)] = 16458, + [SMALL_STATE(557)] = 16507, + [SMALL_STATE(558)] = 16594, + [SMALL_STATE(559)] = 16663, + [SMALL_STATE(560)] = 16728, + [SMALL_STATE(561)] = 16777, + [SMALL_STATE(562)] = 16856, + [SMALL_STATE(563)] = 16947, + [SMALL_STATE(564)] = 16996, + [SMALL_STATE(565)] = 17051, + [SMALL_STATE(566)] = 17100, + [SMALL_STATE(567)] = 17149, + [SMALL_STATE(568)] = 17198, + [SMALL_STATE(569)] = 17247, + [SMALL_STATE(570)] = 17296, + [SMALL_STATE(571)] = 17345, + [SMALL_STATE(572)] = 17394, + [SMALL_STATE(573)] = 17443, + [SMALL_STATE(574)] = 17492, + [SMALL_STATE(575)] = 17587, + [SMALL_STATE(576)] = 17636, + [SMALL_STATE(577)] = 17685, + [SMALL_STATE(578)] = 17734, + [SMALL_STATE(579)] = 17783, + [SMALL_STATE(580)] = 17832, + [SMALL_STATE(581)] = 17881, + [SMALL_STATE(582)] = 17930, [SMALL_STATE(583)] = 17979, [SMALL_STATE(584)] = 18073, [SMALL_STATE(585)] = 18171, - [SMALL_STATE(586)] = 18229, - [SMALL_STATE(587)] = 18323, - [SMALL_STATE(588)] = 18375, - [SMALL_STATE(589)] = 18473, - [SMALL_STATE(590)] = 18571, - [SMALL_STATE(591)] = 18665, - [SMALL_STATE(592)] = 18713, - [SMALL_STATE(593)] = 18763, - [SMALL_STATE(594)] = 18859, - [SMALL_STATE(595)] = 18953, - [SMALL_STATE(596)] = 19007, - [SMALL_STATE(597)] = 19101, - [SMALL_STATE(598)] = 19195, - [SMALL_STATE(599)] = 19245, - [SMALL_STATE(600)] = 19343, - [SMALL_STATE(601)] = 19437, - [SMALL_STATE(602)] = 19531, - [SMALL_STATE(603)] = 19583, - [SMALL_STATE(604)] = 19633, - [SMALL_STATE(605)] = 19683, - [SMALL_STATE(606)] = 19733, - [SMALL_STATE(607)] = 19827, - [SMALL_STATE(608)] = 19877, - [SMALL_STATE(609)] = 19927, - [SMALL_STATE(610)] = 20025, - [SMALL_STATE(611)] = 20119, - [SMALL_STATE(612)] = 20167, - [SMALL_STATE(613)] = 20261, - [SMALL_STATE(614)] = 20355, - [SMALL_STATE(615)] = 20449, - [SMALL_STATE(616)] = 20543, - [SMALL_STATE(617)] = 20637, - [SMALL_STATE(618)] = 20711, - [SMALL_STATE(619)] = 20775, - [SMALL_STATE(620)] = 20861, - [SMALL_STATE(621)] = 20949, - [SMALL_STATE(622)] = 21019, - [SMALL_STATE(623)] = 21101, - [SMALL_STATE(624)] = 21185, - [SMALL_STATE(625)] = 21271, - [SMALL_STATE(626)] = 21339, - [SMALL_STATE(627)] = 21403, - [SMALL_STATE(628)] = 21481, - [SMALL_STATE(629)] = 21571, - [SMALL_STATE(630)] = 21665, - [SMALL_STATE(631)] = 21759, - [SMALL_STATE(632)] = 21853, - [SMALL_STATE(633)] = 21947, - [SMALL_STATE(634)] = 22041, - [SMALL_STATE(635)] = 22135, - [SMALL_STATE(636)] = 22229, - [SMALL_STATE(637)] = 22323, - [SMALL_STATE(638)] = 22397, - [SMALL_STATE(639)] = 22461, - [SMALL_STATE(640)] = 22555, - [SMALL_STATE(641)] = 22641, - [SMALL_STATE(642)] = 22729, - [SMALL_STATE(643)] = 22799, - [SMALL_STATE(644)] = 22881, - [SMALL_STATE(645)] = 22965, - [SMALL_STATE(646)] = 23051, - [SMALL_STATE(647)] = 23119, - [SMALL_STATE(648)] = 23183, - [SMALL_STATE(649)] = 23261, - [SMALL_STATE(650)] = 23351, - [SMALL_STATE(651)] = 23445, + [SMALL_STATE(586)] = 18265, + [SMALL_STATE(587)] = 18359, + [SMALL_STATE(588)] = 18453, + [SMALL_STATE(589)] = 18547, + [SMALL_STATE(590)] = 18641, + [SMALL_STATE(591)] = 18735, + [SMALL_STATE(592)] = 18829, + [SMALL_STATE(593)] = 18879, + [SMALL_STATE(594)] = 18933, + [SMALL_STATE(595)] = 19027, + [SMALL_STATE(596)] = 19121, + [SMALL_STATE(597)] = 19185, + [SMALL_STATE(598)] = 19279, + [SMALL_STATE(599)] = 19329, + [SMALL_STATE(600)] = 19423, + [SMALL_STATE(601)] = 19471, + [SMALL_STATE(602)] = 19523, + [SMALL_STATE(603)] = 19597, + [SMALL_STATE(604)] = 19683, + [SMALL_STATE(605)] = 19781, + [SMALL_STATE(606)] = 19839, + [SMALL_STATE(607)] = 19933, + [SMALL_STATE(608)] = 20027, + [SMALL_STATE(609)] = 20121, + [SMALL_STATE(610)] = 20215, + [SMALL_STATE(611)] = 20309, + [SMALL_STATE(612)] = 20397, + [SMALL_STATE(613)] = 20495, + [SMALL_STATE(614)] = 20543, + [SMALL_STATE(615)] = 20641, + [SMALL_STATE(616)] = 20735, + [SMALL_STATE(617)] = 20829, + [SMALL_STATE(618)] = 20879, + [SMALL_STATE(619)] = 20975, + [SMALL_STATE(620)] = 21059, + [SMALL_STATE(621)] = 21109, + [SMALL_STATE(622)] = 21203, + [SMALL_STATE(623)] = 21293, + [SMALL_STATE(624)] = 21391, + [SMALL_STATE(625)] = 21485, + [SMALL_STATE(626)] = 21575, + [SMALL_STATE(627)] = 21653, + [SMALL_STATE(628)] = 21731, + [SMALL_STATE(629)] = 21795, + [SMALL_STATE(630)] = 21889, + [SMALL_STATE(631)] = 21957, + [SMALL_STATE(632)] = 22043, + [SMALL_STATE(633)] = 22093, + [SMALL_STATE(634)] = 22175, + [SMALL_STATE(635)] = 22239, + [SMALL_STATE(636)] = 22333, + [SMALL_STATE(637)] = 22403, + [SMALL_STATE(638)] = 22471, + [SMALL_STATE(639)] = 22559, + [SMALL_STATE(640)] = 22645, + [SMALL_STATE(641)] = 22739, + [SMALL_STATE(642)] = 22791, + [SMALL_STATE(643)] = 22877, + [SMALL_STATE(644)] = 22961, + [SMALL_STATE(645)] = 23043, + [SMALL_STATE(646)] = 23093, + [SMALL_STATE(647)] = 23191, + [SMALL_STATE(648)] = 23261, + [SMALL_STATE(649)] = 23325, + [SMALL_STATE(650)] = 23399, + [SMALL_STATE(651)] = 23449, [SMALL_STATE(652)] = 23543, - [SMALL_STATE(653)] = 23637, + [SMALL_STATE(653)] = 23593, [SMALL_STATE(654)] = 23687, - [SMALL_STATE(655)] = 23734, - [SMALL_STATE(656)] = 23785, - [SMALL_STATE(657)] = 23832, - [SMALL_STATE(658)] = 23879, - [SMALL_STATE(659)] = 23926, - [SMALL_STATE(660)] = 23977, - [SMALL_STATE(661)] = 24024, - [SMALL_STATE(662)] = 24121, - [SMALL_STATE(663)] = 24168, - [SMALL_STATE(664)] = 24219, - [SMALL_STATE(665)] = 24270, - [SMALL_STATE(666)] = 24367, - [SMALL_STATE(667)] = 24414, - [SMALL_STATE(668)] = 24461, - [SMALL_STATE(669)] = 24508, - [SMALL_STATE(670)] = 24557, - [SMALL_STATE(671)] = 24604, - [SMALL_STATE(672)] = 24655, - [SMALL_STATE(673)] = 24706, - [SMALL_STATE(674)] = 24757, - [SMALL_STATE(675)] = 24810, - [SMALL_STATE(676)] = 24863, - [SMALL_STATE(677)] = 24916, - [SMALL_STATE(678)] = 24963, - [SMALL_STATE(679)] = 25060, - [SMALL_STATE(680)] = 25157, - [SMALL_STATE(681)] = 25254, - [SMALL_STATE(682)] = 25351, - [SMALL_STATE(683)] = 25448, - [SMALL_STATE(684)] = 25545, - [SMALL_STATE(685)] = 25598, - [SMALL_STATE(686)] = 25649, - [SMALL_STATE(687)] = 25746, + [SMALL_STATE(655)] = 23784, + [SMALL_STATE(656)] = 23831, + [SMALL_STATE(657)] = 23928, + [SMALL_STATE(658)] = 23975, + [SMALL_STATE(659)] = 24022, + [SMALL_STATE(660)] = 24073, + [SMALL_STATE(661)] = 24170, + [SMALL_STATE(662)] = 24267, + [SMALL_STATE(663)] = 24314, + [SMALL_STATE(664)] = 24361, + [SMALL_STATE(665)] = 24458, + [SMALL_STATE(666)] = 24505, + [SMALL_STATE(667)] = 24552, + [SMALL_STATE(668)] = 24599, + [SMALL_STATE(669)] = 24646, + [SMALL_STATE(670)] = 24699, + [SMALL_STATE(671)] = 24746, + [SMALL_STATE(672)] = 24793, + [SMALL_STATE(673)] = 24890, + [SMALL_STATE(674)] = 24937, + [SMALL_STATE(675)] = 25034, + [SMALL_STATE(676)] = 25081, + [SMALL_STATE(677)] = 25178, + [SMALL_STATE(678)] = 25275, + [SMALL_STATE(679)] = 25322, + [SMALL_STATE(680)] = 25369, + [SMALL_STATE(681)] = 25416, + [SMALL_STATE(682)] = 25463, + [SMALL_STATE(683)] = 25514, + [SMALL_STATE(684)] = 25611, + [SMALL_STATE(685)] = 25658, + [SMALL_STATE(686)] = 25705, + [SMALL_STATE(687)] = 25752, [SMALL_STATE(688)] = 25799, - [SMALL_STATE(689)] = 25846, + [SMALL_STATE(689)] = 25850, [SMALL_STATE(690)] = 25943, - [SMALL_STATE(691)] = 26036, - [SMALL_STATE(692)] = 26083, - [SMALL_STATE(693)] = 26130, - [SMALL_STATE(694)] = 26227, - [SMALL_STATE(695)] = 26324, - [SMALL_STATE(696)] = 26371, - [SMALL_STATE(697)] = 26468, - [SMALL_STATE(698)] = 26515, - [SMALL_STATE(699)] = 26562, - [SMALL_STATE(700)] = 26609, - [SMALL_STATE(701)] = 26656, - [SMALL_STATE(702)] = 26705, - [SMALL_STATE(703)] = 26752, - [SMALL_STATE(704)] = 26799, - [SMALL_STATE(705)] = 26848, - [SMALL_STATE(706)] = 26895, - [SMALL_STATE(707)] = 26992, - [SMALL_STATE(708)] = 27039, - [SMALL_STATE(709)] = 27132, - [SMALL_STATE(710)] = 27179, - [SMALL_STATE(711)] = 27276, - [SMALL_STATE(712)] = 27373, - [SMALL_STATE(713)] = 27420, - [SMALL_STATE(714)] = 27467, - [SMALL_STATE(715)] = 27564, - [SMALL_STATE(716)] = 27611, - [SMALL_STATE(717)] = 27658, - [SMALL_STATE(718)] = 27705, - [SMALL_STATE(719)] = 27752, - [SMALL_STATE(720)] = 27803, - [SMALL_STATE(721)] = 27850, - [SMALL_STATE(722)] = 27897, - [SMALL_STATE(723)] = 27948, - [SMALL_STATE(724)] = 27995, - [SMALL_STATE(725)] = 28042, - [SMALL_STATE(726)] = 28089, - [SMALL_STATE(727)] = 28186, - [SMALL_STATE(728)] = 28233, - [SMALL_STATE(729)] = 28280, - [SMALL_STATE(730)] = 28377, - [SMALL_STATE(731)] = 28426, - [SMALL_STATE(732)] = 28473, - [SMALL_STATE(733)] = 28520, - [SMALL_STATE(734)] = 28613, - [SMALL_STATE(735)] = 28710, - [SMALL_STATE(736)] = 28807, + [SMALL_STATE(691)] = 26040, + [SMALL_STATE(692)] = 26087, + [SMALL_STATE(693)] = 26134, + [SMALL_STATE(694)] = 26181, + [SMALL_STATE(695)] = 26232, + [SMALL_STATE(696)] = 26283, + [SMALL_STATE(697)] = 26334, + [SMALL_STATE(698)] = 26431, + [SMALL_STATE(699)] = 26528, + [SMALL_STATE(700)] = 26575, + [SMALL_STATE(701)] = 26624, + [SMALL_STATE(702)] = 26671, + [SMALL_STATE(703)] = 26720, + [SMALL_STATE(704)] = 26771, + [SMALL_STATE(705)] = 26818, + [SMALL_STATE(706)] = 26865, + [SMALL_STATE(707)] = 26912, + [SMALL_STATE(708)] = 26959, + [SMALL_STATE(709)] = 27056, + [SMALL_STATE(710)] = 27153, + [SMALL_STATE(711)] = 27206, + [SMALL_STATE(712)] = 27253, + [SMALL_STATE(713)] = 27304, + [SMALL_STATE(714)] = 27351, + [SMALL_STATE(715)] = 27448, + [SMALL_STATE(716)] = 27495, + [SMALL_STATE(717)] = 27592, + [SMALL_STATE(718)] = 27639, + [SMALL_STATE(719)] = 27686, + [SMALL_STATE(720)] = 27733, + [SMALL_STATE(721)] = 27780, + [SMALL_STATE(722)] = 27831, + [SMALL_STATE(723)] = 27928, + [SMALL_STATE(724)] = 28025, + [SMALL_STATE(725)] = 28122, + [SMALL_STATE(726)] = 28219, + [SMALL_STATE(727)] = 28270, + [SMALL_STATE(728)] = 28321, + [SMALL_STATE(729)] = 28368, + [SMALL_STATE(730)] = 28415, + [SMALL_STATE(731)] = 28468, + [SMALL_STATE(732)] = 28515, + [SMALL_STATE(733)] = 28612, + [SMALL_STATE(734)] = 28661, + [SMALL_STATE(735)] = 28754, + [SMALL_STATE(736)] = 28805, [SMALL_STATE(737)] = 28858, [SMALL_STATE(738)] = 28905, - [SMALL_STATE(739)] = 29002, - [SMALL_STATE(740)] = 29049, - [SMALL_STATE(741)] = 29100, - [SMALL_STATE(742)] = 29147, - [SMALL_STATE(743)] = 29194, - [SMALL_STATE(744)] = 29241, - [SMALL_STATE(745)] = 29288, - [SMALL_STATE(746)] = 29335, - [SMALL_STATE(747)] = 29432, - [SMALL_STATE(748)] = 29479, - [SMALL_STATE(749)] = 29526, - [SMALL_STATE(750)] = 29623, - [SMALL_STATE(751)] = 29674, - [SMALL_STATE(752)] = 29721, - [SMALL_STATE(753)] = 29772, + [SMALL_STATE(739)] = 28956, + [SMALL_STATE(740)] = 29003, + [SMALL_STATE(741)] = 29056, + [SMALL_STATE(742)] = 29105, + [SMALL_STATE(743)] = 29152, + [SMALL_STATE(744)] = 29203, + [SMALL_STATE(745)] = 29250, + [SMALL_STATE(746)] = 29343, + [SMALL_STATE(747)] = 29390, + [SMALL_STATE(748)] = 29487, + [SMALL_STATE(749)] = 29534, + [SMALL_STATE(750)] = 29631, + [SMALL_STATE(751)] = 29678, + [SMALL_STATE(752)] = 29725, + [SMALL_STATE(753)] = 29822, [SMALL_STATE(754)] = 29869, [SMALL_STATE(755)] = 29916, [SMALL_STATE(756)] = 29963, - [SMALL_STATE(757)] = 30045, - [SMALL_STATE(758)] = 30129, - [SMALL_STATE(759)] = 30179, - [SMALL_STATE(760)] = 30245, - [SMALL_STATE(761)] = 30307, - [SMALL_STATE(762)] = 30399, - [SMALL_STATE(763)] = 30491, - [SMALL_STATE(764)] = 30567, - [SMALL_STATE(765)] = 30655, - [SMALL_STATE(766)] = 30747, - [SMALL_STATE(767)] = 30839, - [SMALL_STATE(768)] = 30931, - [SMALL_STATE(769)] = 31023, - [SMALL_STATE(770)] = 31115, - [SMALL_STATE(771)] = 31207, - [SMALL_STATE(772)] = 31257, + [SMALL_STATE(757)] = 30013, + [SMALL_STATE(758)] = 30105, + [SMALL_STATE(759)] = 30197, + [SMALL_STATE(760)] = 30289, + [SMALL_STATE(761)] = 30381, + [SMALL_STATE(762)] = 30469, + [SMALL_STATE(763)] = 30561, + [SMALL_STATE(764)] = 30637, + [SMALL_STATE(765)] = 30729, + [SMALL_STATE(766)] = 30821, + [SMALL_STATE(767)] = 30913, + [SMALL_STATE(768)] = 31005, + [SMALL_STATE(769)] = 31067, + [SMALL_STATE(770)] = 31117, + [SMALL_STATE(771)] = 31183, + [SMALL_STATE(772)] = 31267, [SMALL_STATE(773)] = 31349, - [SMALL_STATE(774)] = 31441, - [SMALL_STATE(775)] = 31533, - [SMALL_STATE(776)] = 31625, - [SMALL_STATE(777)] = 31719, - [SMALL_STATE(778)] = 31811, - [SMALL_STATE(779)] = 31883, - [SMALL_STATE(780)] = 31975, - [SMALL_STATE(781)] = 32067, - [SMALL_STATE(782)] = 32129, - [SMALL_STATE(783)] = 32221, - [SMALL_STATE(784)] = 32305, - [SMALL_STATE(785)] = 32391, - [SMALL_STATE(786)] = 32441, - [SMALL_STATE(787)] = 32509, + [SMALL_STATE(774)] = 31399, + [SMALL_STATE(775)] = 31479, + [SMALL_STATE(776)] = 31547, + [SMALL_STATE(777)] = 31633, + [SMALL_STATE(778)] = 31717, + [SMALL_STATE(779)] = 31779, + [SMALL_STATE(780)] = 31851, + [SMALL_STATE(781)] = 31943, + [SMALL_STATE(782)] = 32035, + [SMALL_STATE(783)] = 32127, + [SMALL_STATE(784)] = 32219, + [SMALL_STATE(785)] = 32313, + [SMALL_STATE(786)] = 32405, + [SMALL_STATE(787)] = 32497, [SMALL_STATE(788)] = 32589, - [SMALL_STATE(789)] = 32650, - [SMALL_STATE(790)] = 32741, - [SMALL_STATE(791)] = 32792, - [SMALL_STATE(792)] = 32843, - [SMALL_STATE(793)] = 32894, - [SMALL_STATE(794)] = 32985, - [SMALL_STATE(795)] = 33076, - [SMALL_STATE(796)] = 33167, - [SMALL_STATE(797)] = 33258, - [SMALL_STATE(798)] = 33349, - [SMALL_STATE(799)] = 33440, - [SMALL_STATE(800)] = 33531, - [SMALL_STATE(801)] = 33582, - [SMALL_STATE(802)] = 33673, - [SMALL_STATE(803)] = 33764, - [SMALL_STATE(804)] = 33855, - [SMALL_STATE(805)] = 33946, - [SMALL_STATE(806)] = 34037, - [SMALL_STATE(807)] = 34108, - [SMALL_STATE(808)] = 34169, + [SMALL_STATE(789)] = 32668, + [SMALL_STATE(790)] = 32755, + [SMALL_STATE(791)] = 32838, + [SMALL_STATE(792)] = 32929, + [SMALL_STATE(793)] = 32994, + [SMALL_STATE(794)] = 33085, + [SMALL_STATE(795)] = 33176, + [SMALL_STATE(796)] = 33237, + [SMALL_STATE(797)] = 33328, + [SMALL_STATE(798)] = 33419, + [SMALL_STATE(799)] = 33512, + [SMALL_STATE(800)] = 33593, + [SMALL_STATE(801)] = 33684, + [SMALL_STATE(802)] = 33775, + [SMALL_STATE(803)] = 33866, + [SMALL_STATE(804)] = 33957, + [SMALL_STATE(805)] = 34024, + [SMALL_STATE(806)] = 34075, + [SMALL_STATE(807)] = 34126, + [SMALL_STATE(808)] = 34201, [SMALL_STATE(809)] = 34252, - [SMALL_STATE(810)] = 34337, - [SMALL_STATE(811)] = 34404, - [SMALL_STATE(812)] = 34483, - [SMALL_STATE(813)] = 34564, - [SMALL_STATE(814)] = 34647, - [SMALL_STATE(815)] = 34712, - [SMALL_STATE(816)] = 34787, - [SMALL_STATE(817)] = 34874, - [SMALL_STATE(818)] = 34965, - [SMALL_STATE(819)] = 35056, - [SMALL_STATE(820)] = 35147, - [SMALL_STATE(821)] = 35238, - [SMALL_STATE(822)] = 35329, - [SMALL_STATE(823)] = 35420, + [SMALL_STATE(810)] = 34343, + [SMALL_STATE(811)] = 34434, + [SMALL_STATE(812)] = 34517, + [SMALL_STATE(813)] = 34608, + [SMALL_STATE(814)] = 34699, + [SMALL_STATE(815)] = 34784, + [SMALL_STATE(816)] = 34875, + [SMALL_STATE(817)] = 34966, + [SMALL_STATE(818)] = 35057, + [SMALL_STATE(819)] = 35148, + [SMALL_STATE(820)] = 35239, + [SMALL_STATE(821)] = 35300, + [SMALL_STATE(822)] = 35391, + [SMALL_STATE(823)] = 35462, [SMALL_STATE(824)] = 35513, [SMALL_STATE(825)] = 35604, - [SMALL_STATE(826)] = 35650, - [SMALL_STATE(827)] = 35700, - [SMALL_STATE(828)] = 35788, + [SMALL_STATE(826)] = 35690, + [SMALL_STATE(827)] = 35778, + [SMALL_STATE(828)] = 35824, [SMALL_STATE(829)] = 35874, [SMALL_STATE(830)] = 35960, - [SMALL_STATE(831)] = 36010, - [SMALL_STATE(832)] = 36060, - [SMALL_STATE(833)] = 36110, - [SMALL_STATE(834)] = 36196, - [SMALL_STATE(835)] = 36282, - [SMALL_STATE(836)] = 36368, + [SMALL_STATE(831)] = 36046, + [SMALL_STATE(832)] = 36096, + [SMALL_STATE(833)] = 36184, + [SMALL_STATE(834)] = 36270, + [SMALL_STATE(835)] = 36320, + [SMALL_STATE(836)] = 36406, [SMALL_STATE(837)] = 36456, [SMALL_STATE(838)] = 36542, [SMALL_STATE(839)] = 36628, @@ -79769,165 +79820,165 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(849)] = 37368, [SMALL_STATE(850)] = 37445, [SMALL_STATE(851)] = 37515, - [SMALL_STATE(852)] = 37580, - [SMALL_STATE(853)] = 37637, + [SMALL_STATE(852)] = 37572, + [SMALL_STATE(853)] = 37629, [SMALL_STATE(854)] = 37694, [SMALL_STATE(855)] = 37746, [SMALL_STATE(856)] = 37802, [SMALL_STATE(857)] = 37860, - [SMALL_STATE(858)] = 37916, + [SMALL_STATE(858)] = 37918, [SMALL_STATE(859)] = 37974, - [SMALL_STATE(860)] = 38030, + [SMALL_STATE(860)] = 38032, [SMALL_STATE(861)] = 38088, - [SMALL_STATE(862)] = 38144, - [SMALL_STATE(863)] = 38202, + [SMALL_STATE(862)] = 38146, + [SMALL_STATE(863)] = 38204, [SMALL_STATE(864)] = 38260, - [SMALL_STATE(865)] = 38316, - [SMALL_STATE(866)] = 38372, + [SMALL_STATE(865)] = 38318, + [SMALL_STATE(866)] = 38374, [SMALL_STATE(867)] = 38430, [SMALL_STATE(868)] = 38486, [SMALL_STATE(869)] = 38544, [SMALL_STATE(870)] = 38595, - [SMALL_STATE(871)] = 38648, - [SMALL_STATE(872)] = 38699, - [SMALL_STATE(873)] = 38750, - [SMALL_STATE(874)] = 38801, - [SMALL_STATE(875)] = 38852, - [SMALL_STATE(876)] = 38903, + [SMALL_STATE(871)] = 38646, + [SMALL_STATE(872)] = 38697, + [SMALL_STATE(873)] = 38748, + [SMALL_STATE(874)] = 38799, + [SMALL_STATE(875)] = 38850, + [SMALL_STATE(876)] = 38901, [SMALL_STATE(877)] = 38954, - [SMALL_STATE(878)] = 39014, - [SMALL_STATE(879)] = 39062, - [SMALL_STATE(880)] = 39112, - [SMALL_STATE(881)] = 39162, + [SMALL_STATE(878)] = 39004, + [SMALL_STATE(879)] = 39056, + [SMALL_STATE(880)] = 39104, + [SMALL_STATE(881)] = 39154, [SMALL_STATE(882)] = 39214, - [SMALL_STATE(883)] = 39259, + [SMALL_STATE(883)] = 39257, [SMALL_STATE(884)] = 39302, - [SMALL_STATE(885)] = 39349, - [SMALL_STATE(886)] = 39394, + [SMALL_STATE(885)] = 39347, + [SMALL_STATE(886)] = 39402, [SMALL_STATE(887)] = 39449, - [SMALL_STATE(888)] = 39492, - [SMALL_STATE(889)] = 39547, + [SMALL_STATE(888)] = 39494, + [SMALL_STATE(889)] = 39537, [SMALL_STATE(890)] = 39592, - [SMALL_STATE(891)] = 39635, + [SMALL_STATE(891)] = 39637, [SMALL_STATE(892)] = 39680, [SMALL_STATE(893)] = 39727, [SMALL_STATE(894)] = 39755, [SMALL_STATE(895)] = 39783, [SMALL_STATE(896)] = 39811, [SMALL_STATE(897)] = 39839, - [SMALL_STATE(898)] = 39867, - [SMALL_STATE(899)] = 39895, - [SMALL_STATE(900)] = 39929, - [SMALL_STATE(901)] = 39957, - [SMALL_STATE(902)] = 39995, - [SMALL_STATE(903)] = 40023, - [SMALL_STATE(904)] = 40051, - [SMALL_STATE(905)] = 40089, - [SMALL_STATE(906)] = 40127, - [SMALL_STATE(907)] = 40155, - [SMALL_STATE(908)] = 40183, - [SMALL_STATE(909)] = 40211, - [SMALL_STATE(910)] = 40239, - [SMALL_STATE(911)] = 40267, - [SMALL_STATE(912)] = 40295, - [SMALL_STATE(913)] = 40323, - [SMALL_STATE(914)] = 40363, - [SMALL_STATE(915)] = 40391, - [SMALL_STATE(916)] = 40419, - [SMALL_STATE(917)] = 40447, - [SMALL_STATE(918)] = 40485, - [SMALL_STATE(919)] = 40515, - [SMALL_STATE(920)] = 40543, - [SMALL_STATE(921)] = 40573, - [SMALL_STATE(922)] = 40611, - [SMALL_STATE(923)] = 40639, - [SMALL_STATE(924)] = 40667, - [SMALL_STATE(925)] = 40695, - [SMALL_STATE(926)] = 40723, - [SMALL_STATE(927)] = 40761, - [SMALL_STATE(928)] = 40789, - [SMALL_STATE(929)] = 40817, - [SMALL_STATE(930)] = 40845, + [SMALL_STATE(898)] = 39869, + [SMALL_STATE(899)] = 39897, + [SMALL_STATE(900)] = 39925, + [SMALL_STATE(901)] = 39953, + [SMALL_STATE(902)] = 39981, + [SMALL_STATE(903)] = 40009, + [SMALL_STATE(904)] = 40047, + [SMALL_STATE(905)] = 40075, + [SMALL_STATE(906)] = 40103, + [SMALL_STATE(907)] = 40131, + [SMALL_STATE(908)] = 40159, + [SMALL_STATE(909)] = 40187, + [SMALL_STATE(910)] = 40215, + [SMALL_STATE(911)] = 40243, + [SMALL_STATE(912)] = 40271, + [SMALL_STATE(913)] = 40299, + [SMALL_STATE(914)] = 40339, + [SMALL_STATE(915)] = 40367, + [SMALL_STATE(916)] = 40395, + [SMALL_STATE(917)] = 40423, + [SMALL_STATE(918)] = 40453, + [SMALL_STATE(919)] = 40481, + [SMALL_STATE(920)] = 40519, + [SMALL_STATE(921)] = 40547, + [SMALL_STATE(922)] = 40575, + [SMALL_STATE(923)] = 40609, + [SMALL_STATE(924)] = 40647, + [SMALL_STATE(925)] = 40675, + [SMALL_STATE(926)] = 40713, + [SMALL_STATE(927)] = 40741, + [SMALL_STATE(928)] = 40769, + [SMALL_STATE(929)] = 40797, + [SMALL_STATE(930)] = 40835, [SMALL_STATE(931)] = 40873, [SMALL_STATE(932)] = 40900, [SMALL_STATE(933)] = 40927, [SMALL_STATE(934)] = 40954, [SMALL_STATE(935)] = 40981, - [SMALL_STATE(936)] = 41008, - [SMALL_STATE(937)] = 41035, - [SMALL_STATE(938)] = 41062, - [SMALL_STATE(939)] = 41091, + [SMALL_STATE(936)] = 41010, + [SMALL_STATE(937)] = 41043, + [SMALL_STATE(938)] = 41070, + [SMALL_STATE(939)] = 41097, [SMALL_STATE(940)] = 41124, [SMALL_STATE(941)] = 41151, [SMALL_STATE(942)] = 41178, [SMALL_STATE(943)] = 41205, - [SMALL_STATE(944)] = 41247, - [SMALL_STATE(945)] = 41285, - [SMALL_STATE(946)] = 41331, - [SMALL_STATE(947)] = 41373, - [SMALL_STATE(948)] = 41413, - [SMALL_STATE(949)] = 41455, - [SMALL_STATE(950)] = 41497, - [SMALL_STATE(951)] = 41541, + [SMALL_STATE(944)] = 41245, + [SMALL_STATE(945)] = 41287, + [SMALL_STATE(946)] = 41325, + [SMALL_STATE(947)] = 41367, + [SMALL_STATE(948)] = 41409, + [SMALL_STATE(949)] = 41449, + [SMALL_STATE(950)] = 41495, + [SMALL_STATE(951)] = 41537, [SMALL_STATE(952)] = 41581, - [SMALL_STATE(953)] = 41616, - [SMALL_STATE(954)] = 41651, - [SMALL_STATE(955)] = 41676, - [SMALL_STATE(956)] = 41711, - [SMALL_STATE(957)] = 41746, - [SMALL_STATE(958)] = 41781, - [SMALL_STATE(959)] = 41816, - [SMALL_STATE(960)] = 41841, - [SMALL_STATE(961)] = 41876, - [SMALL_STATE(962)] = 41915, - [SMALL_STATE(963)] = 41950, - [SMALL_STATE(964)] = 41993, - [SMALL_STATE(965)] = 42028, - [SMALL_STATE(966)] = 42069, - [SMALL_STATE(967)] = 42104, - [SMALL_STATE(968)] = 42139, - [SMALL_STATE(969)] = 42164, - [SMALL_STATE(970)] = 42199, - [SMALL_STATE(971)] = 42234, - [SMALL_STATE(972)] = 42269, - [SMALL_STATE(973)] = 42304, - [SMALL_STATE(974)] = 42339, - [SMALL_STATE(975)] = 42374, - [SMALL_STATE(976)] = 42409, - [SMALL_STATE(977)] = 42444, - [SMALL_STATE(978)] = 42479, - [SMALL_STATE(979)] = 42514, - [SMALL_STATE(980)] = 42539, - [SMALL_STATE(981)] = 42574, - [SMALL_STATE(982)] = 42599, - [SMALL_STATE(983)] = 42624, + [SMALL_STATE(953)] = 41620, + [SMALL_STATE(954)] = 41663, + [SMALL_STATE(955)] = 41698, + [SMALL_STATE(956)] = 41733, + [SMALL_STATE(957)] = 41768, + [SMALL_STATE(958)] = 41803, + [SMALL_STATE(959)] = 41828, + [SMALL_STATE(960)] = 41853, + [SMALL_STATE(961)] = 41878, + [SMALL_STATE(962)] = 41917, + [SMALL_STATE(963)] = 41952, + [SMALL_STATE(964)] = 41987, + [SMALL_STATE(965)] = 42022, + [SMALL_STATE(966)] = 42057, + [SMALL_STATE(967)] = 42098, + [SMALL_STATE(968)] = 42133, + [SMALL_STATE(969)] = 42168, + [SMALL_STATE(970)] = 42203, + [SMALL_STATE(971)] = 42238, + [SMALL_STATE(972)] = 42273, + [SMALL_STATE(973)] = 42308, + [SMALL_STATE(974)] = 42343, + [SMALL_STATE(975)] = 42378, + [SMALL_STATE(976)] = 42403, + [SMALL_STATE(977)] = 42428, + [SMALL_STATE(978)] = 42453, + [SMALL_STATE(979)] = 42488, + [SMALL_STATE(980)] = 42523, + [SMALL_STATE(981)] = 42558, + [SMALL_STATE(982)] = 42593, + [SMALL_STATE(983)] = 42628, [SMALL_STATE(984)] = 42663, [SMALL_STATE(985)] = 42698, - [SMALL_STATE(986)] = 42741, - [SMALL_STATE(987)] = 42782, + [SMALL_STATE(986)] = 42733, + [SMALL_STATE(987)] = 42774, [SMALL_STATE(988)] = 42817, [SMALL_STATE(989)] = 42849, [SMALL_STATE(990)] = 42881, [SMALL_STATE(991)] = 42913, [SMALL_STATE(992)] = 42945, - [SMALL_STATE(993)] = 42977, - [SMALL_STATE(994)] = 43009, - [SMALL_STATE(995)] = 43041, - [SMALL_STATE(996)] = 43073, - [SMALL_STATE(997)] = 43105, + [SMALL_STATE(993)] = 42967, + [SMALL_STATE(994)] = 42999, + [SMALL_STATE(995)] = 43031, + [SMALL_STATE(996)] = 43063, + [SMALL_STATE(997)] = 43095, [SMALL_STATE(998)] = 43127, - [SMALL_STATE(999)] = 43149, - [SMALL_STATE(1000)] = 43181, - [SMALL_STATE(1001)] = 43213, - [SMALL_STATE(1002)] = 43245, + [SMALL_STATE(999)] = 43159, + [SMALL_STATE(1000)] = 43191, + [SMALL_STATE(1001)] = 43223, + [SMALL_STATE(1002)] = 43255, [SMALL_STATE(1003)] = 43277, - [SMALL_STATE(1004)] = 43309, + [SMALL_STATE(1004)] = 43299, [SMALL_STATE(1005)] = 43331, - [SMALL_STATE(1006)] = 43353, - [SMALL_STATE(1007)] = 43385, + [SMALL_STATE(1006)] = 43363, + [SMALL_STATE(1007)] = 43395, [SMALL_STATE(1008)] = 43417, [SMALL_STATE(1009)] = 43449, - [SMALL_STATE(1010)] = 43471, + [SMALL_STATE(1010)] = 43481, [SMALL_STATE(1011)] = 43503, [SMALL_STATE(1012)] = 43539, [SMALL_STATE(1013)] = 43575, @@ -79937,397 +79988,397 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1017)] = 43719, [SMALL_STATE(1018)] = 43755, [SMALL_STATE(1019)] = 43791, - [SMALL_STATE(1020)] = 43827, - [SMALL_STATE(1021)] = 43860, - [SMALL_STATE(1022)] = 43896, - [SMALL_STATE(1023)] = 43932, - [SMALL_STATE(1024)] = 43968, - [SMALL_STATE(1025)] = 44004, - [SMALL_STATE(1026)] = 44037, - [SMALL_STATE(1027)] = 44070, - [SMALL_STATE(1028)] = 44103, - [SMALL_STATE(1029)] = 44136, - [SMALL_STATE(1030)] = 44169, - [SMALL_STATE(1031)] = 44202, - [SMALL_STATE(1032)] = 44235, - [SMALL_STATE(1033)] = 44268, - [SMALL_STATE(1034)] = 44298, - [SMALL_STATE(1035)] = 44326, - [SMALL_STATE(1036)] = 44356, - [SMALL_STATE(1037)] = 44386, - [SMALL_STATE(1038)] = 44416, - [SMALL_STATE(1039)] = 44446, - [SMALL_STATE(1040)] = 44476, - [SMALL_STATE(1041)] = 44502, - [SMALL_STATE(1042)] = 44532, - [SMALL_STATE(1043)] = 44562, - [SMALL_STATE(1044)] = 44592, - [SMALL_STATE(1045)] = 44622, - [SMALL_STATE(1046)] = 44652, - [SMALL_STATE(1047)] = 44682, - [SMALL_STATE(1048)] = 44712, - [SMALL_STATE(1049)] = 44742, - [SMALL_STATE(1050)] = 44772, - [SMALL_STATE(1051)] = 44798, - [SMALL_STATE(1052)] = 44828, - [SMALL_STATE(1053)] = 44858, - [SMALL_STATE(1054)] = 44888, - [SMALL_STATE(1055)] = 44918, - [SMALL_STATE(1056)] = 44948, - [SMALL_STATE(1057)] = 44975, - [SMALL_STATE(1058)] = 45002, - [SMALL_STATE(1059)] = 45026, + [SMALL_STATE(1020)] = 43829, + [SMALL_STATE(1021)] = 43862, + [SMALL_STATE(1022)] = 43898, + [SMALL_STATE(1023)] = 43934, + [SMALL_STATE(1024)] = 43970, + [SMALL_STATE(1025)] = 44006, + [SMALL_STATE(1026)] = 44039, + [SMALL_STATE(1027)] = 44072, + [SMALL_STATE(1028)] = 44105, + [SMALL_STATE(1029)] = 44138, + [SMALL_STATE(1030)] = 44171, + [SMALL_STATE(1031)] = 44204, + [SMALL_STATE(1032)] = 44237, + [SMALL_STATE(1033)] = 44270, + [SMALL_STATE(1034)] = 44300, + [SMALL_STATE(1035)] = 44330, + [SMALL_STATE(1036)] = 44360, + [SMALL_STATE(1037)] = 44390, + [SMALL_STATE(1038)] = 44420, + [SMALL_STATE(1039)] = 44448, + [SMALL_STATE(1040)] = 44478, + [SMALL_STATE(1041)] = 44508, + [SMALL_STATE(1042)] = 44538, + [SMALL_STATE(1043)] = 44564, + [SMALL_STATE(1044)] = 44594, + [SMALL_STATE(1045)] = 44624, + [SMALL_STATE(1046)] = 44654, + [SMALL_STATE(1047)] = 44684, + [SMALL_STATE(1048)] = 44710, + [SMALL_STATE(1049)] = 44740, + [SMALL_STATE(1050)] = 44770, + [SMALL_STATE(1051)] = 44800, + [SMALL_STATE(1052)] = 44830, + [SMALL_STATE(1053)] = 44860, + [SMALL_STATE(1054)] = 44890, + [SMALL_STATE(1055)] = 44920, + [SMALL_STATE(1056)] = 44950, + [SMALL_STATE(1057)] = 44977, + [SMALL_STATE(1058)] = 45004, + [SMALL_STATE(1059)] = 45024, [SMALL_STATE(1060)] = 45048, - [SMALL_STATE(1061)] = 45062, - [SMALL_STATE(1062)] = 45084, - [SMALL_STATE(1063)] = 45106, - [SMALL_STATE(1064)] = 45130, - [SMALL_STATE(1065)] = 45144, - [SMALL_STATE(1066)] = 45166, - [SMALL_STATE(1067)] = 45188, + [SMALL_STATE(1061)] = 45070, + [SMALL_STATE(1062)] = 45094, + [SMALL_STATE(1063)] = 45116, + [SMALL_STATE(1064)] = 45136, + [SMALL_STATE(1065)] = 45160, + [SMALL_STATE(1066)] = 45184, + [SMALL_STATE(1067)] = 45198, [SMALL_STATE(1068)] = 45212, - [SMALL_STATE(1069)] = 45236, + [SMALL_STATE(1069)] = 45226, [SMALL_STATE(1070)] = 45250, [SMALL_STATE(1071)] = 45274, [SMALL_STATE(1072)] = 45298, [SMALL_STATE(1073)] = 45322, - [SMALL_STATE(1074)] = 45342, + [SMALL_STATE(1074)] = 45346, [SMALL_STATE(1075)] = 45366, [SMALL_STATE(1076)] = 45390, [SMALL_STATE(1077)] = 45404, [SMALL_STATE(1078)] = 45428, - [SMALL_STATE(1079)] = 45448, - [SMALL_STATE(1080)] = 45468, - [SMALL_STATE(1081)] = 45492, - [SMALL_STATE(1082)] = 45506, - [SMALL_STATE(1083)] = 45521, - [SMALL_STATE(1084)] = 45536, - [SMALL_STATE(1085)] = 45555, - [SMALL_STATE(1086)] = 45576, - [SMALL_STATE(1087)] = 45589, - [SMALL_STATE(1088)] = 45602, - [SMALL_STATE(1089)] = 45617, - [SMALL_STATE(1090)] = 45636, - [SMALL_STATE(1091)] = 45651, - [SMALL_STATE(1092)] = 45666, - [SMALL_STATE(1093)] = 45681, - [SMALL_STATE(1094)] = 45700, - [SMALL_STATE(1095)] = 45719, - [SMALL_STATE(1096)] = 45740, - [SMALL_STATE(1097)] = 45755, - [SMALL_STATE(1098)] = 45770, - [SMALL_STATE(1099)] = 45785, - [SMALL_STATE(1100)] = 45806, - [SMALL_STATE(1101)] = 45827, - [SMALL_STATE(1102)] = 45842, - [SMALL_STATE(1103)] = 45857, - [SMALL_STATE(1104)] = 45872, - [SMALL_STATE(1105)] = 45887, - [SMALL_STATE(1106)] = 45908, - [SMALL_STATE(1107)] = 45923, - [SMALL_STATE(1108)] = 45938, - [SMALL_STATE(1109)] = 45951, - [SMALL_STATE(1110)] = 45966, - [SMALL_STATE(1111)] = 45983, + [SMALL_STATE(1079)] = 45450, + [SMALL_STATE(1080)] = 45472, + [SMALL_STATE(1081)] = 45494, + [SMALL_STATE(1082)] = 45508, + [SMALL_STATE(1083)] = 45527, + [SMALL_STATE(1084)] = 45544, + [SMALL_STATE(1085)] = 45563, + [SMALL_STATE(1086)] = 45578, + [SMALL_STATE(1087)] = 45593, + [SMALL_STATE(1088)] = 45608, + [SMALL_STATE(1089)] = 45623, + [SMALL_STATE(1090)] = 45638, + [SMALL_STATE(1091)] = 45657, + [SMALL_STATE(1092)] = 45672, + [SMALL_STATE(1093)] = 45687, + [SMALL_STATE(1094)] = 45708, + [SMALL_STATE(1095)] = 45723, + [SMALL_STATE(1096)] = 45736, + [SMALL_STATE(1097)] = 45751, + [SMALL_STATE(1098)] = 45772, + [SMALL_STATE(1099)] = 45787, + [SMALL_STATE(1100)] = 45802, + [SMALL_STATE(1101)] = 45817, + [SMALL_STATE(1102)] = 45830, + [SMALL_STATE(1103)] = 45843, + [SMALL_STATE(1104)] = 45858, + [SMALL_STATE(1105)] = 45871, + [SMALL_STATE(1106)] = 45888, + [SMALL_STATE(1107)] = 45903, + [SMALL_STATE(1108)] = 45924, + [SMALL_STATE(1109)] = 45939, + [SMALL_STATE(1110)] = 45958, + [SMALL_STATE(1111)] = 45977, [SMALL_STATE(1112)] = 45998, - [SMALL_STATE(1113)] = 46011, - [SMALL_STATE(1114)] = 46028, - [SMALL_STATE(1115)] = 46041, - [SMALL_STATE(1116)] = 46062, - [SMALL_STATE(1117)] = 46077, - [SMALL_STATE(1118)] = 46090, - [SMALL_STATE(1119)] = 46109, - [SMALL_STATE(1120)] = 46128, - [SMALL_STATE(1121)] = 46147, - [SMALL_STATE(1122)] = 46166, + [SMALL_STATE(1113)] = 46013, + [SMALL_STATE(1114)] = 46032, + [SMALL_STATE(1115)] = 46047, + [SMALL_STATE(1116)] = 46064, + [SMALL_STATE(1117)] = 46083, + [SMALL_STATE(1118)] = 46104, + [SMALL_STATE(1119)] = 46125, + [SMALL_STATE(1120)] = 46138, + [SMALL_STATE(1121)] = 46151, + [SMALL_STATE(1122)] = 46170, [SMALL_STATE(1123)] = 46185, - [SMALL_STATE(1124)] = 46202, - [SMALL_STATE(1125)] = 46221, - [SMALL_STATE(1126)] = 46234, - [SMALL_STATE(1127)] = 46247, - [SMALL_STATE(1128)] = 46260, - [SMALL_STATE(1129)] = 46281, - [SMALL_STATE(1130)] = 46296, - [SMALL_STATE(1131)] = 46311, + [SMALL_STATE(1124)] = 46198, + [SMALL_STATE(1125)] = 46217, + [SMALL_STATE(1126)] = 46230, + [SMALL_STATE(1127)] = 46251, + [SMALL_STATE(1128)] = 46264, + [SMALL_STATE(1129)] = 46277, + [SMALL_STATE(1130)] = 46292, + [SMALL_STATE(1131)] = 46313, [SMALL_STATE(1132)] = 46332, [SMALL_STATE(1133)] = 46351, - [SMALL_STATE(1134)] = 46364, - [SMALL_STATE(1135)] = 46378, - [SMALL_STATE(1136)] = 46398, + [SMALL_STATE(1134)] = 46366, + [SMALL_STATE(1135)] = 46380, + [SMALL_STATE(1136)] = 46400, [SMALL_STATE(1137)] = 46418, - [SMALL_STATE(1138)] = 46432, - [SMALL_STATE(1139)] = 46452, - [SMALL_STATE(1140)] = 46466, - [SMALL_STATE(1141)] = 46486, - [SMALL_STATE(1142)] = 46504, - [SMALL_STATE(1143)] = 46516, - [SMALL_STATE(1144)] = 46528, - [SMALL_STATE(1145)] = 46548, - [SMALL_STATE(1146)] = 46562, - [SMALL_STATE(1147)] = 46582, - [SMALL_STATE(1148)] = 46600, - [SMALL_STATE(1149)] = 46616, - [SMALL_STATE(1150)] = 46636, - [SMALL_STATE(1151)] = 46650, - [SMALL_STATE(1152)] = 46664, - [SMALL_STATE(1153)] = 46678, - [SMALL_STATE(1154)] = 46692, - [SMALL_STATE(1155)] = 46706, - [SMALL_STATE(1156)] = 46726, - [SMALL_STATE(1157)] = 46746, - [SMALL_STATE(1158)] = 46760, - [SMALL_STATE(1159)] = 46780, - [SMALL_STATE(1160)] = 46794, - [SMALL_STATE(1161)] = 46814, - [SMALL_STATE(1162)] = 46826, - [SMALL_STATE(1163)] = 46846, - [SMALL_STATE(1164)] = 46860, - [SMALL_STATE(1165)] = 46874, - [SMALL_STATE(1166)] = 46888, - [SMALL_STATE(1167)] = 46908, - [SMALL_STATE(1168)] = 46926, - [SMALL_STATE(1169)] = 46946, - [SMALL_STATE(1170)] = 46966, - [SMALL_STATE(1171)] = 46986, - [SMALL_STATE(1172)] = 47006, - [SMALL_STATE(1173)] = 47026, - [SMALL_STATE(1174)] = 47046, - [SMALL_STATE(1175)] = 47060, - [SMALL_STATE(1176)] = 47076, - [SMALL_STATE(1177)] = 47096, - [SMALL_STATE(1178)] = 47112, + [SMALL_STATE(1138)] = 46438, + [SMALL_STATE(1139)] = 46454, + [SMALL_STATE(1140)] = 46468, + [SMALL_STATE(1141)] = 46488, + [SMALL_STATE(1142)] = 46508, + [SMALL_STATE(1143)] = 46522, + [SMALL_STATE(1144)] = 46542, + [SMALL_STATE(1145)] = 46556, + [SMALL_STATE(1146)] = 46576, + [SMALL_STATE(1147)] = 46596, + [SMALL_STATE(1148)] = 46614, + [SMALL_STATE(1149)] = 46634, + [SMALL_STATE(1150)] = 46650, + [SMALL_STATE(1151)] = 46664, + [SMALL_STATE(1152)] = 46678, + [SMALL_STATE(1153)] = 46698, + [SMALL_STATE(1154)] = 46718, + [SMALL_STATE(1155)] = 46732, + [SMALL_STATE(1156)] = 46752, + [SMALL_STATE(1157)] = 46766, + [SMALL_STATE(1158)] = 46780, + [SMALL_STATE(1159)] = 46800, + [SMALL_STATE(1160)] = 46812, + [SMALL_STATE(1161)] = 46832, + [SMALL_STATE(1162)] = 46852, + [SMALL_STATE(1163)] = 46866, + [SMALL_STATE(1164)] = 46886, + [SMALL_STATE(1165)] = 46900, + [SMALL_STATE(1166)] = 46920, + [SMALL_STATE(1167)] = 46934, + [SMALL_STATE(1168)] = 46952, + [SMALL_STATE(1169)] = 46972, + [SMALL_STATE(1170)] = 46992, + [SMALL_STATE(1171)] = 47006, + [SMALL_STATE(1172)] = 47026, + [SMALL_STATE(1173)] = 47040, + [SMALL_STATE(1174)] = 47054, + [SMALL_STATE(1175)] = 47066, + [SMALL_STATE(1176)] = 47078, + [SMALL_STATE(1177)] = 47092, + [SMALL_STATE(1178)] = 47106, [SMALL_STATE(1179)] = 47126, [SMALL_STATE(1180)] = 47140, [SMALL_STATE(1181)] = 47154, [SMALL_STATE(1182)] = 47174, - [SMALL_STATE(1183)] = 47188, - [SMALL_STATE(1184)] = 47208, - [SMALL_STATE(1185)] = 47219, - [SMALL_STATE(1186)] = 47238, - [SMALL_STATE(1187)] = 47255, - [SMALL_STATE(1188)] = 47272, + [SMALL_STATE(1183)] = 47194, + [SMALL_STATE(1184)] = 47210, + [SMALL_STATE(1185)] = 47229, + [SMALL_STATE(1186)] = 47246, + [SMALL_STATE(1187)] = 47259, + [SMALL_STATE(1188)] = 47274, [SMALL_STATE(1189)] = 47289, [SMALL_STATE(1190)] = 47306, [SMALL_STATE(1191)] = 47323, - [SMALL_STATE(1192)] = 47334, - [SMALL_STATE(1193)] = 47345, - [SMALL_STATE(1194)] = 47362, - [SMALL_STATE(1195)] = 47379, - [SMALL_STATE(1196)] = 47396, - [SMALL_STATE(1197)] = 47415, - [SMALL_STATE(1198)] = 47430, - [SMALL_STATE(1199)] = 47449, - [SMALL_STATE(1200)] = 47466, - [SMALL_STATE(1201)] = 47483, - [SMALL_STATE(1202)] = 47500, - [SMALL_STATE(1203)] = 47517, - [SMALL_STATE(1204)] = 47534, - [SMALL_STATE(1205)] = 47549, - [SMALL_STATE(1206)] = 47568, - [SMALL_STATE(1207)] = 47583, - [SMALL_STATE(1208)] = 47600, - [SMALL_STATE(1209)] = 47617, - [SMALL_STATE(1210)] = 47632, - [SMALL_STATE(1211)] = 47649, - [SMALL_STATE(1212)] = 47662, - [SMALL_STATE(1213)] = 47677, - [SMALL_STATE(1214)] = 47694, - [SMALL_STATE(1215)] = 47709, - [SMALL_STATE(1216)] = 47726, - [SMALL_STATE(1217)] = 47743, - [SMALL_STATE(1218)] = 47760, - [SMALL_STATE(1219)] = 47777, - [SMALL_STATE(1220)] = 47794, - [SMALL_STATE(1221)] = 47811, - [SMALL_STATE(1222)] = 47828, - [SMALL_STATE(1223)] = 47845, - [SMALL_STATE(1224)] = 47862, - [SMALL_STATE(1225)] = 47877, - [SMALL_STATE(1226)] = 47894, - [SMALL_STATE(1227)] = 47911, - [SMALL_STATE(1228)] = 47928, - [SMALL_STATE(1229)] = 47945, - [SMALL_STATE(1230)] = 47962, - [SMALL_STATE(1231)] = 47979, - [SMALL_STATE(1232)] = 47994, - [SMALL_STATE(1233)] = 48005, - [SMALL_STATE(1234)] = 48022, + [SMALL_STATE(1192)] = 47340, + [SMALL_STATE(1193)] = 47355, + [SMALL_STATE(1194)] = 47370, + [SMALL_STATE(1195)] = 47385, + [SMALL_STATE(1196)] = 47402, + [SMALL_STATE(1197)] = 47419, + [SMALL_STATE(1198)] = 47436, + [SMALL_STATE(1199)] = 47453, + [SMALL_STATE(1200)] = 47472, + [SMALL_STATE(1201)] = 47491, + [SMALL_STATE(1202)] = 47508, + [SMALL_STATE(1203)] = 47525, + [SMALL_STATE(1204)] = 47542, + [SMALL_STATE(1205)] = 47559, + [SMALL_STATE(1206)] = 47570, + [SMALL_STATE(1207)] = 47587, + [SMALL_STATE(1208)] = 47604, + [SMALL_STATE(1209)] = 47621, + [SMALL_STATE(1210)] = 47638, + [SMALL_STATE(1211)] = 47655, + [SMALL_STATE(1212)] = 47672, + [SMALL_STATE(1213)] = 47685, + [SMALL_STATE(1214)] = 47702, + [SMALL_STATE(1215)] = 47719, + [SMALL_STATE(1216)] = 47736, + [SMALL_STATE(1217)] = 47751, + [SMALL_STATE(1218)] = 47766, + [SMALL_STATE(1219)] = 47779, + [SMALL_STATE(1220)] = 47796, + [SMALL_STATE(1221)] = 47815, + [SMALL_STATE(1222)] = 47834, + [SMALL_STATE(1223)] = 47851, + [SMALL_STATE(1224)] = 47864, + [SMALL_STATE(1225)] = 47879, + [SMALL_STATE(1226)] = 47896, + [SMALL_STATE(1227)] = 47913, + [SMALL_STATE(1228)] = 47930, + [SMALL_STATE(1229)] = 47947, + [SMALL_STATE(1230)] = 47964, + [SMALL_STATE(1231)] = 47981, + [SMALL_STATE(1232)] = 47998, + [SMALL_STATE(1233)] = 48017, + [SMALL_STATE(1234)] = 48028, [SMALL_STATE(1235)] = 48039, - [SMALL_STATE(1236)] = 48058, - [SMALL_STATE(1237)] = 48077, - [SMALL_STATE(1238)] = 48094, - [SMALL_STATE(1239)] = 48105, - [SMALL_STATE(1240)] = 48118, - [SMALL_STATE(1241)] = 48133, - [SMALL_STATE(1242)] = 48148, - [SMALL_STATE(1243)] = 48159, + [SMALL_STATE(1236)] = 48050, + [SMALL_STATE(1237)] = 48067, + [SMALL_STATE(1238)] = 48078, + [SMALL_STATE(1239)] = 48095, + [SMALL_STATE(1240)] = 48112, + [SMALL_STATE(1241)] = 48129, + [SMALL_STATE(1242)] = 48146, + [SMALL_STATE(1243)] = 48161, [SMALL_STATE(1244)] = 48176, - [SMALL_STATE(1245)] = 48187, - [SMALL_STATE(1246)] = 48204, - [SMALL_STATE(1247)] = 48219, - [SMALL_STATE(1248)] = 48236, - [SMALL_STATE(1249)] = 48253, - [SMALL_STATE(1250)] = 48270, - [SMALL_STATE(1251)] = 48285, + [SMALL_STATE(1245)] = 48193, + [SMALL_STATE(1246)] = 48210, + [SMALL_STATE(1247)] = 48227, + [SMALL_STATE(1248)] = 48238, + [SMALL_STATE(1249)] = 48255, + [SMALL_STATE(1250)] = 48272, + [SMALL_STATE(1251)] = 48287, [SMALL_STATE(1252)] = 48302, [SMALL_STATE(1253)] = 48319, [SMALL_STATE(1254)] = 48336, [SMALL_STATE(1255)] = 48353, [SMALL_STATE(1256)] = 48370, - [SMALL_STATE(1257)] = 48385, - [SMALL_STATE(1258)] = 48401, - [SMALL_STATE(1259)] = 48413, - [SMALL_STATE(1260)] = 48427, - [SMALL_STATE(1261)] = 48441, - [SMALL_STATE(1262)] = 48455, - [SMALL_STATE(1263)] = 48469, - [SMALL_STATE(1264)] = 48483, - [SMALL_STATE(1265)] = 48497, - [SMALL_STATE(1266)] = 48511, - [SMALL_STATE(1267)] = 48525, - [SMALL_STATE(1268)] = 48537, - [SMALL_STATE(1269)] = 48551, - [SMALL_STATE(1270)] = 48565, - [SMALL_STATE(1271)] = 48579, - [SMALL_STATE(1272)] = 48593, - [SMALL_STATE(1273)] = 48607, - [SMALL_STATE(1274)] = 48621, - [SMALL_STATE(1275)] = 48631, - [SMALL_STATE(1276)] = 48645, - [SMALL_STATE(1277)] = 48661, - [SMALL_STATE(1278)] = 48675, - [SMALL_STATE(1279)] = 48685, - [SMALL_STATE(1280)] = 48699, - [SMALL_STATE(1281)] = 48713, - [SMALL_STATE(1282)] = 48725, - [SMALL_STATE(1283)] = 48735, - [SMALL_STATE(1284)] = 48747, - [SMALL_STATE(1285)] = 48759, - [SMALL_STATE(1286)] = 48773, - [SMALL_STATE(1287)] = 48787, - [SMALL_STATE(1288)] = 48801, - [SMALL_STATE(1289)] = 48817, - [SMALL_STATE(1290)] = 48831, - [SMALL_STATE(1291)] = 48845, - [SMALL_STATE(1292)] = 48859, - [SMALL_STATE(1293)] = 48873, - [SMALL_STATE(1294)] = 48885, - [SMALL_STATE(1295)] = 48899, - [SMALL_STATE(1296)] = 48913, - [SMALL_STATE(1297)] = 48927, - [SMALL_STATE(1298)] = 48941, - [SMALL_STATE(1299)] = 48955, - [SMALL_STATE(1300)] = 48969, - [SMALL_STATE(1301)] = 48983, - [SMALL_STATE(1302)] = 48997, - [SMALL_STATE(1303)] = 49011, - [SMALL_STATE(1304)] = 49027, - [SMALL_STATE(1305)] = 49041, - [SMALL_STATE(1306)] = 49055, - [SMALL_STATE(1307)] = 49069, - [SMALL_STATE(1308)] = 49083, - [SMALL_STATE(1309)] = 49099, - [SMALL_STATE(1310)] = 49109, - [SMALL_STATE(1311)] = 49119, - [SMALL_STATE(1312)] = 49133, - [SMALL_STATE(1313)] = 49143, - [SMALL_STATE(1314)] = 49157, - [SMALL_STATE(1315)] = 49171, - [SMALL_STATE(1316)] = 49183, - [SMALL_STATE(1317)] = 49197, - [SMALL_STATE(1318)] = 49211, - [SMALL_STATE(1319)] = 49225, - [SMALL_STATE(1320)] = 49239, - [SMALL_STATE(1321)] = 49253, - [SMALL_STATE(1322)] = 49267, - [SMALL_STATE(1323)] = 49279, - [SMALL_STATE(1324)] = 49293, - [SMALL_STATE(1325)] = 49307, - [SMALL_STATE(1326)] = 49319, - [SMALL_STATE(1327)] = 49333, - [SMALL_STATE(1328)] = 49349, - [SMALL_STATE(1329)] = 49363, - [SMALL_STATE(1330)] = 49377, - [SMALL_STATE(1331)] = 49391, - [SMALL_STATE(1332)] = 49405, - [SMALL_STATE(1333)] = 49419, - [SMALL_STATE(1334)] = 49433, - [SMALL_STATE(1335)] = 49447, - [SMALL_STATE(1336)] = 49461, - [SMALL_STATE(1337)] = 49475, - [SMALL_STATE(1338)] = 49489, - [SMALL_STATE(1339)] = 49503, - [SMALL_STATE(1340)] = 49517, - [SMALL_STATE(1341)] = 49531, - [SMALL_STATE(1342)] = 49545, - [SMALL_STATE(1343)] = 49559, - [SMALL_STATE(1344)] = 49573, - [SMALL_STATE(1345)] = 49585, - [SMALL_STATE(1346)] = 49599, - [SMALL_STATE(1347)] = 49613, - [SMALL_STATE(1348)] = 49627, - [SMALL_STATE(1349)] = 49641, - [SMALL_STATE(1350)] = 49655, - [SMALL_STATE(1351)] = 49669, - [SMALL_STATE(1352)] = 49679, - [SMALL_STATE(1353)] = 49695, - [SMALL_STATE(1354)] = 49709, - [SMALL_STATE(1355)] = 49723, - [SMALL_STATE(1356)] = 49733, - [SMALL_STATE(1357)] = 49747, - [SMALL_STATE(1358)] = 49761, - [SMALL_STATE(1359)] = 49772, - [SMALL_STATE(1360)] = 49781, - [SMALL_STATE(1361)] = 49792, - [SMALL_STATE(1362)] = 49803, - [SMALL_STATE(1363)] = 49814, - [SMALL_STATE(1364)] = 49825, - [SMALL_STATE(1365)] = 49836, - [SMALL_STATE(1366)] = 49847, - [SMALL_STATE(1367)] = 49858, - [SMALL_STATE(1368)] = 49867, - [SMALL_STATE(1369)] = 49878, - [SMALL_STATE(1370)] = 49889, - [SMALL_STATE(1371)] = 49900, - [SMALL_STATE(1372)] = 49911, - [SMALL_STATE(1373)] = 49922, - [SMALL_STATE(1374)] = 49933, - [SMALL_STATE(1375)] = 49942, - [SMALL_STATE(1376)] = 49953, - [SMALL_STATE(1377)] = 49964, - [SMALL_STATE(1378)] = 49975, - [SMALL_STATE(1379)] = 49986, - [SMALL_STATE(1380)] = 49997, - [SMALL_STATE(1381)] = 50008, - [SMALL_STATE(1382)] = 50019, - [SMALL_STATE(1383)] = 50030, - [SMALL_STATE(1384)] = 50041, - [SMALL_STATE(1385)] = 50052, - [SMALL_STATE(1386)] = 50063, - [SMALL_STATE(1387)] = 50074, - [SMALL_STATE(1388)] = 50085, - [SMALL_STATE(1389)] = 50096, - [SMALL_STATE(1390)] = 50107, - [SMALL_STATE(1391)] = 50118, - [SMALL_STATE(1392)] = 50129, - [SMALL_STATE(1393)] = 50140, - [SMALL_STATE(1394)] = 50149, - [SMALL_STATE(1395)] = 50160, + [SMALL_STATE(1257)] = 48387, + [SMALL_STATE(1258)] = 48402, + [SMALL_STATE(1259)] = 48412, + [SMALL_STATE(1260)] = 48424, + [SMALL_STATE(1261)] = 48438, + [SMALL_STATE(1262)] = 48452, + [SMALL_STATE(1263)] = 48466, + [SMALL_STATE(1264)] = 48480, + [SMALL_STATE(1265)] = 48496, + [SMALL_STATE(1266)] = 48510, + [SMALL_STATE(1267)] = 48524, + [SMALL_STATE(1268)] = 48538, + [SMALL_STATE(1269)] = 48552, + [SMALL_STATE(1270)] = 48564, + [SMALL_STATE(1271)] = 48574, + [SMALL_STATE(1272)] = 48588, + [SMALL_STATE(1273)] = 48602, + [SMALL_STATE(1274)] = 48616, + [SMALL_STATE(1275)] = 48632, + [SMALL_STATE(1276)] = 48646, + [SMALL_STATE(1277)] = 48660, + [SMALL_STATE(1278)] = 48674, + [SMALL_STATE(1279)] = 48688, + [SMALL_STATE(1280)] = 48702, + [SMALL_STATE(1281)] = 48716, + [SMALL_STATE(1282)] = 48730, + [SMALL_STATE(1283)] = 48746, + [SMALL_STATE(1284)] = 48758, + [SMALL_STATE(1285)] = 48772, + [SMALL_STATE(1286)] = 48786, + [SMALL_STATE(1287)] = 48798, + [SMALL_STATE(1288)] = 48812, + [SMALL_STATE(1289)] = 48826, + [SMALL_STATE(1290)] = 48840, + [SMALL_STATE(1291)] = 48854, + [SMALL_STATE(1292)] = 48868, + [SMALL_STATE(1293)] = 48878, + [SMALL_STATE(1294)] = 48888, + [SMALL_STATE(1295)] = 48904, + [SMALL_STATE(1296)] = 48918, + [SMALL_STATE(1297)] = 48932, + [SMALL_STATE(1298)] = 48946, + [SMALL_STATE(1299)] = 48960, + [SMALL_STATE(1300)] = 48974, + [SMALL_STATE(1301)] = 48988, + [SMALL_STATE(1302)] = 49002, + [SMALL_STATE(1303)] = 49016, + [SMALL_STATE(1304)] = 49030, + [SMALL_STATE(1305)] = 49042, + [SMALL_STATE(1306)] = 49056, + [SMALL_STATE(1307)] = 49070, + [SMALL_STATE(1308)] = 49084, + [SMALL_STATE(1309)] = 49098, + [SMALL_STATE(1310)] = 49108, + [SMALL_STATE(1311)] = 49122, + [SMALL_STATE(1312)] = 49136, + [SMALL_STATE(1313)] = 49150, + [SMALL_STATE(1314)] = 49162, + [SMALL_STATE(1315)] = 49176, + [SMALL_STATE(1316)] = 49188, + [SMALL_STATE(1317)] = 49202, + [SMALL_STATE(1318)] = 49216, + [SMALL_STATE(1319)] = 49230, + [SMALL_STATE(1320)] = 49244, + [SMALL_STATE(1321)] = 49258, + [SMALL_STATE(1322)] = 49272, + [SMALL_STATE(1323)] = 49286, + [SMALL_STATE(1324)] = 49300, + [SMALL_STATE(1325)] = 49314, + [SMALL_STATE(1326)] = 49330, + [SMALL_STATE(1327)] = 49340, + [SMALL_STATE(1328)] = 49350, + [SMALL_STATE(1329)] = 49364, + [SMALL_STATE(1330)] = 49378, + [SMALL_STATE(1331)] = 49392, + [SMALL_STATE(1332)] = 49406, + [SMALL_STATE(1333)] = 49420, + [SMALL_STATE(1334)] = 49432, + [SMALL_STATE(1335)] = 49446, + [SMALL_STATE(1336)] = 49460, + [SMALL_STATE(1337)] = 49474, + [SMALL_STATE(1338)] = 49488, + [SMALL_STATE(1339)] = 49502, + [SMALL_STATE(1340)] = 49518, + [SMALL_STATE(1341)] = 49532, + [SMALL_STATE(1342)] = 49544, + [SMALL_STATE(1343)] = 49558, + [SMALL_STATE(1344)] = 49572, + [SMALL_STATE(1345)] = 49584, + [SMALL_STATE(1346)] = 49598, + [SMALL_STATE(1347)] = 49612, + [SMALL_STATE(1348)] = 49626, + [SMALL_STATE(1349)] = 49640, + [SMALL_STATE(1350)] = 49654, + [SMALL_STATE(1351)] = 49668, + [SMALL_STATE(1352)] = 49682, + [SMALL_STATE(1353)] = 49696, + [SMALL_STATE(1354)] = 49706, + [SMALL_STATE(1355)] = 49722, + [SMALL_STATE(1356)] = 49736, + [SMALL_STATE(1357)] = 49750, + [SMALL_STATE(1358)] = 49764, + [SMALL_STATE(1359)] = 49778, + [SMALL_STATE(1360)] = 49789, + [SMALL_STATE(1361)] = 49800, + [SMALL_STATE(1362)] = 49811, + [SMALL_STATE(1363)] = 49822, + [SMALL_STATE(1364)] = 49833, + [SMALL_STATE(1365)] = 49844, + [SMALL_STATE(1366)] = 49855, + [SMALL_STATE(1367)] = 49864, + [SMALL_STATE(1368)] = 49875, + [SMALL_STATE(1369)] = 49886, + [SMALL_STATE(1370)] = 49895, + [SMALL_STATE(1371)] = 49906, + [SMALL_STATE(1372)] = 49917, + [SMALL_STATE(1373)] = 49928, + [SMALL_STATE(1374)] = 49939, + [SMALL_STATE(1375)] = 49950, + [SMALL_STATE(1376)] = 49961, + [SMALL_STATE(1377)] = 49970, + [SMALL_STATE(1378)] = 49981, + [SMALL_STATE(1379)] = 49992, + [SMALL_STATE(1380)] = 50003, + [SMALL_STATE(1381)] = 50014, + [SMALL_STATE(1382)] = 50025, + [SMALL_STATE(1383)] = 50036, + [SMALL_STATE(1384)] = 50047, + [SMALL_STATE(1385)] = 50058, + [SMALL_STATE(1386)] = 50069, + [SMALL_STATE(1387)] = 50080, + [SMALL_STATE(1388)] = 50089, + [SMALL_STATE(1389)] = 50098, + [SMALL_STATE(1390)] = 50109, + [SMALL_STATE(1391)] = 50120, + [SMALL_STATE(1392)] = 50131, + [SMALL_STATE(1393)] = 50142, + [SMALL_STATE(1394)] = 50153, + [SMALL_STATE(1395)] = 50162, [SMALL_STATE(1396)] = 50171, - [SMALL_STATE(1397)] = 50180, - [SMALL_STATE(1398)] = 50189, - [SMALL_STATE(1399)] = 50200, - [SMALL_STATE(1400)] = 50211, - [SMALL_STATE(1401)] = 50222, + [SMALL_STATE(1397)] = 50182, + [SMALL_STATE(1398)] = 50193, + [SMALL_STATE(1399)] = 50204, + [SMALL_STATE(1400)] = 50213, + [SMALL_STATE(1401)] = 50224, [SMALL_STATE(1402)] = 50233, [SMALL_STATE(1403)] = 50242, - [SMALL_STATE(1404)] = 50253, - [SMALL_STATE(1405)] = 50264, - [SMALL_STATE(1406)] = 50275, - [SMALL_STATE(1407)] = 50286, - [SMALL_STATE(1408)] = 50297, - [SMALL_STATE(1409)] = 50308, - [SMALL_STATE(1410)] = 50319, + [SMALL_STATE(1404)] = 50251, + [SMALL_STATE(1405)] = 50262, + [SMALL_STATE(1406)] = 50273, + [SMALL_STATE(1407)] = 50284, + [SMALL_STATE(1408)] = 50295, + [SMALL_STATE(1409)] = 50306, + [SMALL_STATE(1410)] = 50317, [SMALL_STATE(1411)] = 50328, [SMALL_STATE(1412)] = 50339, [SMALL_STATE(1413)] = 50350, @@ -80335,77 +80386,77 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1415)] = 50372, [SMALL_STATE(1416)] = 50383, [SMALL_STATE(1417)] = 50394, - [SMALL_STATE(1418)] = 50405, - [SMALL_STATE(1419)] = 50416, - [SMALL_STATE(1420)] = 50427, - [SMALL_STATE(1421)] = 50438, - [SMALL_STATE(1422)] = 50449, - [SMALL_STATE(1423)] = 50458, - [SMALL_STATE(1424)] = 50467, - [SMALL_STATE(1425)] = 50478, - [SMALL_STATE(1426)] = 50489, - [SMALL_STATE(1427)] = 50500, - [SMALL_STATE(1428)] = 50511, + [SMALL_STATE(1418)] = 50403, + [SMALL_STATE(1419)] = 50414, + [SMALL_STATE(1420)] = 50425, + [SMALL_STATE(1421)] = 50436, + [SMALL_STATE(1422)] = 50447, + [SMALL_STATE(1423)] = 50456, + [SMALL_STATE(1424)] = 50465, + [SMALL_STATE(1425)] = 50476, + [SMALL_STATE(1426)] = 50487, + [SMALL_STATE(1427)] = 50498, + [SMALL_STATE(1428)] = 50509, [SMALL_STATE(1429)] = 50520, [SMALL_STATE(1430)] = 50531, - [SMALL_STATE(1431)] = 50540, - [SMALL_STATE(1432)] = 50551, - [SMALL_STATE(1433)] = 50562, - [SMALL_STATE(1434)] = 50573, - [SMALL_STATE(1435)] = 50584, - [SMALL_STATE(1436)] = 50595, + [SMALL_STATE(1431)] = 50542, + [SMALL_STATE(1432)] = 50553, + [SMALL_STATE(1433)] = 50564, + [SMALL_STATE(1434)] = 50575, + [SMALL_STATE(1435)] = 50586, + [SMALL_STATE(1436)] = 50597, [SMALL_STATE(1437)] = 50606, [SMALL_STATE(1438)] = 50617, - [SMALL_STATE(1439)] = 50628, - [SMALL_STATE(1440)] = 50639, - [SMALL_STATE(1441)] = 50650, - [SMALL_STATE(1442)] = 50661, - [SMALL_STATE(1443)] = 50672, - [SMALL_STATE(1444)] = 50681, - [SMALL_STATE(1445)] = 50692, - [SMALL_STATE(1446)] = 50703, - [SMALL_STATE(1447)] = 50714, - [SMALL_STATE(1448)] = 50725, - [SMALL_STATE(1449)] = 50736, - [SMALL_STATE(1450)] = 50747, - [SMALL_STATE(1451)] = 50758, - [SMALL_STATE(1452)] = 50769, - [SMALL_STATE(1453)] = 50780, - [SMALL_STATE(1454)] = 50789, - [SMALL_STATE(1455)] = 50800, - [SMALL_STATE(1456)] = 50811, - [SMALL_STATE(1457)] = 50822, - [SMALL_STATE(1458)] = 50833, - [SMALL_STATE(1459)] = 50842, - [SMALL_STATE(1460)] = 50853, - [SMALL_STATE(1461)] = 50864, - [SMALL_STATE(1462)] = 50875, - [SMALL_STATE(1463)] = 50886, - [SMALL_STATE(1464)] = 50897, - [SMALL_STATE(1465)] = 50908, - [SMALL_STATE(1466)] = 50919, - [SMALL_STATE(1467)] = 50930, - [SMALL_STATE(1468)] = 50941, - [SMALL_STATE(1469)] = 50952, - [SMALL_STATE(1470)] = 50963, - [SMALL_STATE(1471)] = 50972, - [SMALL_STATE(1472)] = 50981, - [SMALL_STATE(1473)] = 50992, - [SMALL_STATE(1474)] = 51003, - [SMALL_STATE(1475)] = 51014, - [SMALL_STATE(1476)] = 51025, - [SMALL_STATE(1477)] = 51036, - [SMALL_STATE(1478)] = 51047, - [SMALL_STATE(1479)] = 51058, - [SMALL_STATE(1480)] = 51069, - [SMALL_STATE(1481)] = 51080, - [SMALL_STATE(1482)] = 51089, - [SMALL_STATE(1483)] = 51100, - [SMALL_STATE(1484)] = 51111, - [SMALL_STATE(1485)] = 51122, - [SMALL_STATE(1486)] = 51133, - [SMALL_STATE(1487)] = 51144, - [SMALL_STATE(1488)] = 51155, + [SMALL_STATE(1439)] = 50626, + [SMALL_STATE(1440)] = 50637, + [SMALL_STATE(1441)] = 50648, + [SMALL_STATE(1442)] = 50657, + [SMALL_STATE(1443)] = 50666, + [SMALL_STATE(1444)] = 50677, + [SMALL_STATE(1445)] = 50688, + [SMALL_STATE(1446)] = 50699, + [SMALL_STATE(1447)] = 50710, + [SMALL_STATE(1448)] = 50721, + [SMALL_STATE(1449)] = 50732, + [SMALL_STATE(1450)] = 50743, + [SMALL_STATE(1451)] = 50754, + [SMALL_STATE(1452)] = 50765, + [SMALL_STATE(1453)] = 50776, + [SMALL_STATE(1454)] = 50787, + [SMALL_STATE(1455)] = 50796, + [SMALL_STATE(1456)] = 50807, + [SMALL_STATE(1457)] = 50818, + [SMALL_STATE(1458)] = 50827, + [SMALL_STATE(1459)] = 50838, + [SMALL_STATE(1460)] = 50847, + [SMALL_STATE(1461)] = 50858, + [SMALL_STATE(1462)] = 50869, + [SMALL_STATE(1463)] = 50878, + [SMALL_STATE(1464)] = 50889, + [SMALL_STATE(1465)] = 50900, + [SMALL_STATE(1466)] = 50911, + [SMALL_STATE(1467)] = 50922, + [SMALL_STATE(1468)] = 50933, + [SMALL_STATE(1469)] = 50944, + [SMALL_STATE(1470)] = 50955, + [SMALL_STATE(1471)] = 50966, + [SMALL_STATE(1472)] = 50977, + [SMALL_STATE(1473)] = 50988, + [SMALL_STATE(1474)] = 50999, + [SMALL_STATE(1475)] = 51010, + [SMALL_STATE(1476)] = 51021, + [SMALL_STATE(1477)] = 51032, + [SMALL_STATE(1478)] = 51043, + [SMALL_STATE(1479)] = 51054, + [SMALL_STATE(1480)] = 51065, + [SMALL_STATE(1481)] = 51076, + [SMALL_STATE(1482)] = 51087, + [SMALL_STATE(1483)] = 51098, + [SMALL_STATE(1484)] = 51109, + [SMALL_STATE(1485)] = 51120, + [SMALL_STATE(1486)] = 51131, + [SMALL_STATE(1487)] = 51142, + [SMALL_STATE(1488)] = 51153, [SMALL_STATE(1489)] = 51164, [SMALL_STATE(1490)] = 51175, [SMALL_STATE(1491)] = 51186, @@ -80415,202 +80466,205 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1495)] = 51230, [SMALL_STATE(1496)] = 51241, [SMALL_STATE(1497)] = 51252, - [SMALL_STATE(1498)] = 51263, - [SMALL_STATE(1499)] = 51274, - [SMALL_STATE(1500)] = 51285, - [SMALL_STATE(1501)] = 51296, - [SMALL_STATE(1502)] = 51307, - [SMALL_STATE(1503)] = 51318, - [SMALL_STATE(1504)] = 51329, - [SMALL_STATE(1505)] = 51340, - [SMALL_STATE(1506)] = 51351, - [SMALL_STATE(1507)] = 51362, - [SMALL_STATE(1508)] = 51373, - [SMALL_STATE(1509)] = 51384, - [SMALL_STATE(1510)] = 51395, - [SMALL_STATE(1511)] = 51406, - [SMALL_STATE(1512)] = 51417, - [SMALL_STATE(1513)] = 51428, - [SMALL_STATE(1514)] = 51439, - [SMALL_STATE(1515)] = 51450, - [SMALL_STATE(1516)] = 51461, - [SMALL_STATE(1517)] = 51472, - [SMALL_STATE(1518)] = 51483, - [SMALL_STATE(1519)] = 51492, - [SMALL_STATE(1520)] = 51503, - [SMALL_STATE(1521)] = 51514, - [SMALL_STATE(1522)] = 51525, - [SMALL_STATE(1523)] = 51536, - [SMALL_STATE(1524)] = 51547, - [SMALL_STATE(1525)] = 51558, - [SMALL_STATE(1526)] = 51569, - [SMALL_STATE(1527)] = 51578, - [SMALL_STATE(1528)] = 51589, - [SMALL_STATE(1529)] = 51600, - [SMALL_STATE(1530)] = 51609, + [SMALL_STATE(1498)] = 51261, + [SMALL_STATE(1499)] = 51272, + [SMALL_STATE(1500)] = 51283, + [SMALL_STATE(1501)] = 51294, + [SMALL_STATE(1502)] = 51305, + [SMALL_STATE(1503)] = 51316, + [SMALL_STATE(1504)] = 51327, + [SMALL_STATE(1505)] = 51338, + [SMALL_STATE(1506)] = 51349, + [SMALL_STATE(1507)] = 51360, + [SMALL_STATE(1508)] = 51371, + [SMALL_STATE(1509)] = 51382, + [SMALL_STATE(1510)] = 51393, + [SMALL_STATE(1511)] = 51404, + [SMALL_STATE(1512)] = 51415, + [SMALL_STATE(1513)] = 51426, + [SMALL_STATE(1514)] = 51437, + [SMALL_STATE(1515)] = 51448, + [SMALL_STATE(1516)] = 51457, + [SMALL_STATE(1517)] = 51466, + [SMALL_STATE(1518)] = 51477, + [SMALL_STATE(1519)] = 51488, + [SMALL_STATE(1520)] = 51499, + [SMALL_STATE(1521)] = 51510, + [SMALL_STATE(1522)] = 51519, + [SMALL_STATE(1523)] = 51530, + [SMALL_STATE(1524)] = 51541, + [SMALL_STATE(1525)] = 51552, + [SMALL_STATE(1526)] = 51563, + [SMALL_STATE(1527)] = 51574, + [SMALL_STATE(1528)] = 51585, + [SMALL_STATE(1529)] = 51596, + [SMALL_STATE(1530)] = 51607, [SMALL_STATE(1531)] = 51618, [SMALL_STATE(1532)] = 51629, [SMALL_STATE(1533)] = 51640, [SMALL_STATE(1534)] = 51651, [SMALL_STATE(1535)] = 51662, - [SMALL_STATE(1536)] = 51673, - [SMALL_STATE(1537)] = 51684, - [SMALL_STATE(1538)] = 51695, - [SMALL_STATE(1539)] = 51706, - [SMALL_STATE(1540)] = 51715, - [SMALL_STATE(1541)] = 51726, - [SMALL_STATE(1542)] = 51737, - [SMALL_STATE(1543)] = 51748, - [SMALL_STATE(1544)] = 51759, - [SMALL_STATE(1545)] = 51770, - [SMALL_STATE(1546)] = 51781, - [SMALL_STATE(1547)] = 51792, - [SMALL_STATE(1548)] = 51801, - [SMALL_STATE(1549)] = 51812, - [SMALL_STATE(1550)] = 51823, + [SMALL_STATE(1536)] = 51671, + [SMALL_STATE(1537)] = 51680, + [SMALL_STATE(1538)] = 51691, + [SMALL_STATE(1539)] = 51702, + [SMALL_STATE(1540)] = 51713, + [SMALL_STATE(1541)] = 51724, + [SMALL_STATE(1542)] = 51733, + [SMALL_STATE(1543)] = 51744, + [SMALL_STATE(1544)] = 51755, + [SMALL_STATE(1545)] = 51766, + [SMALL_STATE(1546)] = 51777, + [SMALL_STATE(1547)] = 51788, + [SMALL_STATE(1548)] = 51799, + [SMALL_STATE(1549)] = 51810, + [SMALL_STATE(1550)] = 51821, [SMALL_STATE(1551)] = 51832, [SMALL_STATE(1552)] = 51843, [SMALL_STATE(1553)] = 51854, [SMALL_STATE(1554)] = 51865, [SMALL_STATE(1555)] = 51876, [SMALL_STATE(1556)] = 51887, - [SMALL_STATE(1557)] = 51896, - [SMALL_STATE(1558)] = 51905, - [SMALL_STATE(1559)] = 51916, - [SMALL_STATE(1560)] = 51925, - [SMALL_STATE(1561)] = 51936, - [SMALL_STATE(1562)] = 51945, - [SMALL_STATE(1563)] = 51956, - [SMALL_STATE(1564)] = 51967, - [SMALL_STATE(1565)] = 51978, - [SMALL_STATE(1566)] = 51987, - [SMALL_STATE(1567)] = 51998, - [SMALL_STATE(1568)] = 52009, - [SMALL_STATE(1569)] = 52020, - [SMALL_STATE(1570)] = 52031, - [SMALL_STATE(1571)] = 52040, - [SMALL_STATE(1572)] = 52051, - [SMALL_STATE(1573)] = 52062, - [SMALL_STATE(1574)] = 52073, - [SMALL_STATE(1575)] = 52084, - [SMALL_STATE(1576)] = 52095, - [SMALL_STATE(1577)] = 52106, - [SMALL_STATE(1578)] = 52117, - [SMALL_STATE(1579)] = 52128, - [SMALL_STATE(1580)] = 52139, - [SMALL_STATE(1581)] = 52150, - [SMALL_STATE(1582)] = 52161, - [SMALL_STATE(1583)] = 52172, - [SMALL_STATE(1584)] = 52183, - [SMALL_STATE(1585)] = 52194, - [SMALL_STATE(1586)] = 52205, - [SMALL_STATE(1587)] = 52216, - [SMALL_STATE(1588)] = 52227, - [SMALL_STATE(1589)] = 52238, - [SMALL_STATE(1590)] = 52249, - [SMALL_STATE(1591)] = 52260, - [SMALL_STATE(1592)] = 52271, - [SMALL_STATE(1593)] = 52282, - [SMALL_STATE(1594)] = 52291, - [SMALL_STATE(1595)] = 52302, - [SMALL_STATE(1596)] = 52313, - [SMALL_STATE(1597)] = 52324, - [SMALL_STATE(1598)] = 52335, - [SMALL_STATE(1599)] = 52346, - [SMALL_STATE(1600)] = 52357, - [SMALL_STATE(1601)] = 52368, - [SMALL_STATE(1602)] = 52379, - [SMALL_STATE(1603)] = 52387, - [SMALL_STATE(1604)] = 52395, - [SMALL_STATE(1605)] = 52403, - [SMALL_STATE(1606)] = 52411, - [SMALL_STATE(1607)] = 52419, - [SMALL_STATE(1608)] = 52427, - [SMALL_STATE(1609)] = 52435, - [SMALL_STATE(1610)] = 52443, - [SMALL_STATE(1611)] = 52451, - [SMALL_STATE(1612)] = 52461, - [SMALL_STATE(1613)] = 52469, - [SMALL_STATE(1614)] = 52477, - [SMALL_STATE(1615)] = 52485, - [SMALL_STATE(1616)] = 52493, - [SMALL_STATE(1617)] = 52501, - [SMALL_STATE(1618)] = 52509, - [SMALL_STATE(1619)] = 52517, - [SMALL_STATE(1620)] = 52525, - [SMALL_STATE(1621)] = 52533, - [SMALL_STATE(1622)] = 52541, - [SMALL_STATE(1623)] = 52549, - [SMALL_STATE(1624)] = 52557, - [SMALL_STATE(1625)] = 52565, - [SMALL_STATE(1626)] = 52573, - [SMALL_STATE(1627)] = 52583, - [SMALL_STATE(1628)] = 52591, - [SMALL_STATE(1629)] = 52599, - [SMALL_STATE(1630)] = 52607, - [SMALL_STATE(1631)] = 52615, - [SMALL_STATE(1632)] = 52623, - [SMALL_STATE(1633)] = 52631, - [SMALL_STATE(1634)] = 52639, - [SMALL_STATE(1635)] = 52647, - [SMALL_STATE(1636)] = 52655, - [SMALL_STATE(1637)] = 52665, - [SMALL_STATE(1638)] = 52673, - [SMALL_STATE(1639)] = 52681, - [SMALL_STATE(1640)] = 52689, - [SMALL_STATE(1641)] = 52697, - [SMALL_STATE(1642)] = 52707, - [SMALL_STATE(1643)] = 52715, - [SMALL_STATE(1644)] = 52723, - [SMALL_STATE(1645)] = 52731, - [SMALL_STATE(1646)] = 52739, - [SMALL_STATE(1647)] = 52747, - [SMALL_STATE(1648)] = 52757, - [SMALL_STATE(1649)] = 52767, - [SMALL_STATE(1650)] = 52775, - [SMALL_STATE(1651)] = 52783, - [SMALL_STATE(1652)] = 52791, - [SMALL_STATE(1653)] = 52801, - [SMALL_STATE(1654)] = 52809, - [SMALL_STATE(1655)] = 52817, - [SMALL_STATE(1656)] = 52825, - [SMALL_STATE(1657)] = 52833, - [SMALL_STATE(1658)] = 52841, - [SMALL_STATE(1659)] = 52849, - [SMALL_STATE(1660)] = 52857, - [SMALL_STATE(1661)] = 52865, - [SMALL_STATE(1662)] = 52873, - [SMALL_STATE(1663)] = 52881, - [SMALL_STATE(1664)] = 52889, - [SMALL_STATE(1665)] = 52897, - [SMALL_STATE(1666)] = 52905, - [SMALL_STATE(1667)] = 52913, - [SMALL_STATE(1668)] = 52921, - [SMALL_STATE(1669)] = 52929, - [SMALL_STATE(1670)] = 52937, - [SMALL_STATE(1671)] = 52945, - [SMALL_STATE(1672)] = 52955, - [SMALL_STATE(1673)] = 52963, - [SMALL_STATE(1674)] = 52971, - [SMALL_STATE(1675)] = 52979, - [SMALL_STATE(1676)] = 52987, - [SMALL_STATE(1677)] = 52995, - [SMALL_STATE(1678)] = 53003, - [SMALL_STATE(1679)] = 53011, - [SMALL_STATE(1680)] = 53019, - [SMALL_STATE(1681)] = 53027, - [SMALL_STATE(1682)] = 53035, - [SMALL_STATE(1683)] = 53043, - [SMALL_STATE(1684)] = 53051, - [SMALL_STATE(1685)] = 53059, - [SMALL_STATE(1686)] = 53067, - [SMALL_STATE(1687)] = 53075, - [SMALL_STATE(1688)] = 53083, - [SMALL_STATE(1689)] = 53091, - [SMALL_STATE(1690)] = 53099, - [SMALL_STATE(1691)] = 53107, - [SMALL_STATE(1692)] = 53115, - [SMALL_STATE(1693)] = 53123, + [SMALL_STATE(1557)] = 51898, + [SMALL_STATE(1558)] = 51909, + [SMALL_STATE(1559)] = 51920, + [SMALL_STATE(1560)] = 51931, + [SMALL_STATE(1561)] = 51942, + [SMALL_STATE(1562)] = 51953, + [SMALL_STATE(1563)] = 51964, + [SMALL_STATE(1564)] = 51975, + [SMALL_STATE(1565)] = 51986, + [SMALL_STATE(1566)] = 51997, + [SMALL_STATE(1567)] = 52008, + [SMALL_STATE(1568)] = 52019, + [SMALL_STATE(1569)] = 52028, + [SMALL_STATE(1570)] = 52039, + [SMALL_STATE(1571)] = 52050, + [SMALL_STATE(1572)] = 52061, + [SMALL_STATE(1573)] = 52072, + [SMALL_STATE(1574)] = 52083, + [SMALL_STATE(1575)] = 52094, + [SMALL_STATE(1576)] = 52103, + [SMALL_STATE(1577)] = 52114, + [SMALL_STATE(1578)] = 52125, + [SMALL_STATE(1579)] = 52136, + [SMALL_STATE(1580)] = 52145, + [SMALL_STATE(1581)] = 52156, + [SMALL_STATE(1582)] = 52167, + [SMALL_STATE(1583)] = 52178, + [SMALL_STATE(1584)] = 52189, + [SMALL_STATE(1585)] = 52200, + [SMALL_STATE(1586)] = 52209, + [SMALL_STATE(1587)] = 52220, + [SMALL_STATE(1588)] = 52231, + [SMALL_STATE(1589)] = 52242, + [SMALL_STATE(1590)] = 52253, + [SMALL_STATE(1591)] = 52264, + [SMALL_STATE(1592)] = 52275, + [SMALL_STATE(1593)] = 52286, + [SMALL_STATE(1594)] = 52297, + [SMALL_STATE(1595)] = 52308, + [SMALL_STATE(1596)] = 52319, + [SMALL_STATE(1597)] = 52330, + [SMALL_STATE(1598)] = 52341, + [SMALL_STATE(1599)] = 52352, + [SMALL_STATE(1600)] = 52363, + [SMALL_STATE(1601)] = 52374, + [SMALL_STATE(1602)] = 52385, + [SMALL_STATE(1603)] = 52396, + [SMALL_STATE(1604)] = 52404, + [SMALL_STATE(1605)] = 52412, + [SMALL_STATE(1606)] = 52420, + [SMALL_STATE(1607)] = 52430, + [SMALL_STATE(1608)] = 52440, + [SMALL_STATE(1609)] = 52448, + [SMALL_STATE(1610)] = 52456, + [SMALL_STATE(1611)] = 52464, + [SMALL_STATE(1612)] = 52472, + [SMALL_STATE(1613)] = 52480, + [SMALL_STATE(1614)] = 52488, + [SMALL_STATE(1615)] = 52496, + [SMALL_STATE(1616)] = 52504, + [SMALL_STATE(1617)] = 52512, + [SMALL_STATE(1618)] = 52522, + [SMALL_STATE(1619)] = 52530, + [SMALL_STATE(1620)] = 52538, + [SMALL_STATE(1621)] = 52546, + [SMALL_STATE(1622)] = 52554, + [SMALL_STATE(1623)] = 52562, + [SMALL_STATE(1624)] = 52570, + [SMALL_STATE(1625)] = 52578, + [SMALL_STATE(1626)] = 52586, + [SMALL_STATE(1627)] = 52594, + [SMALL_STATE(1628)] = 52602, + [SMALL_STATE(1629)] = 52610, + [SMALL_STATE(1630)] = 52618, + [SMALL_STATE(1631)] = 52626, + [SMALL_STATE(1632)] = 52634, + [SMALL_STATE(1633)] = 52642, + [SMALL_STATE(1634)] = 52650, + [SMALL_STATE(1635)] = 52658, + [SMALL_STATE(1636)] = 52666, + [SMALL_STATE(1637)] = 52674, + [SMALL_STATE(1638)] = 52684, + [SMALL_STATE(1639)] = 52692, + [SMALL_STATE(1640)] = 52700, + [SMALL_STATE(1641)] = 52708, + [SMALL_STATE(1642)] = 52716, + [SMALL_STATE(1643)] = 52724, + [SMALL_STATE(1644)] = 52732, + [SMALL_STATE(1645)] = 52742, + [SMALL_STATE(1646)] = 52750, + [SMALL_STATE(1647)] = 52758, + [SMALL_STATE(1648)] = 52766, + [SMALL_STATE(1649)] = 52776, + [SMALL_STATE(1650)] = 52784, + [SMALL_STATE(1651)] = 52792, + [SMALL_STATE(1652)] = 52800, + [SMALL_STATE(1653)] = 52808, + [SMALL_STATE(1654)] = 52816, + [SMALL_STATE(1655)] = 52824, + [SMALL_STATE(1656)] = 52832, + [SMALL_STATE(1657)] = 52840, + [SMALL_STATE(1658)] = 52848, + [SMALL_STATE(1659)] = 52856, + [SMALL_STATE(1660)] = 52864, + [SMALL_STATE(1661)] = 52872, + [SMALL_STATE(1662)] = 52880, + [SMALL_STATE(1663)] = 52888, + [SMALL_STATE(1664)] = 52896, + [SMALL_STATE(1665)] = 52904, + [SMALL_STATE(1666)] = 52912, + [SMALL_STATE(1667)] = 52920, + [SMALL_STATE(1668)] = 52928, + [SMALL_STATE(1669)] = 52936, + [SMALL_STATE(1670)] = 52944, + [SMALL_STATE(1671)] = 52952, + [SMALL_STATE(1672)] = 52960, + [SMALL_STATE(1673)] = 52968, + [SMALL_STATE(1674)] = 52976, + [SMALL_STATE(1675)] = 52984, + [SMALL_STATE(1676)] = 52992, + [SMALL_STATE(1677)] = 53000, + [SMALL_STATE(1678)] = 53008, + [SMALL_STATE(1679)] = 53016, + [SMALL_STATE(1680)] = 53024, + [SMALL_STATE(1681)] = 53032, + [SMALL_STATE(1682)] = 53040, + [SMALL_STATE(1683)] = 53048, + [SMALL_STATE(1684)] = 53058, + [SMALL_STATE(1685)] = 53066, + [SMALL_STATE(1686)] = 53074, + [SMALL_STATE(1687)] = 53082, + [SMALL_STATE(1688)] = 53090, + [SMALL_STATE(1689)] = 53098, + [SMALL_STATE(1690)] = 53106, + [SMALL_STATE(1691)] = 53114, + [SMALL_STATE(1692)] = 53122, + [SMALL_STATE(1693)] = 53130, + [SMALL_STATE(1694)] = 53138, + [SMALL_STATE(1695)] = 53148, + [SMALL_STATE(1696)] = 53156, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -80619,1640 +80673,1643 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(438), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(444), [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(280), [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3), [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1019), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1384), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1059), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(377), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1066), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1573), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1527), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1343), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(193), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1480), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(43), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1362), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1267), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1422), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1594), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1060), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(385), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1062), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1593), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1591), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(28), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1341), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1313), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1575), [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(101), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(324), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(111), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(327), [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1352), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1166), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1234), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1181), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(310), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1228), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(153), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(216), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1671), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(216), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1089), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(713), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(713), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(701), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1354), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(439), - [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 100), - [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 100), - [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 59), - [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 59), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(60), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1294), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1169), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1228), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1229), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1165), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(296), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1231), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(237), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1110), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(685), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1678), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(685), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1285), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(445), + [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 59), + [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 59), + [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 38), + [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 38), [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), - [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 38), - [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 38), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 100), + [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 100), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 92), - [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 92), - [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 92), - [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 92), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 37), - [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 37), - [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 37), - [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 37), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 71), - [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 71), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 71), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 71), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 76), - [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 76), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 76), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 76), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 80), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 80), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 80), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 80), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 88), - [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 88), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 88), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 88), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 88), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 88), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 88), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 88), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 98), - [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 98), - [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 98), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 98), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 69), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 69), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 92), + [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 92), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 92), + [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 92), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 71), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 71), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 71), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 71), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 76), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 76), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 76), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 76), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 88), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 88), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 88), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 88), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 37), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 37), + [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 37), + [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 37), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 80), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 80), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 80), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 80), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 88), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 88), + [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 88), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 88), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 98), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 98), + [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 98), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 98), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 69), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 69), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(31), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1006), - [850] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), SHIFT(91), - [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(212), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 6), - [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 6), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(91), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(241), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(190), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 19), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(116), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 19), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 28), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 28), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 103), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 103), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 24), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 24), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 62), - [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 62), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 6), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 6), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 3), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 3), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 96), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 96), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 88), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 88), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 88), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 88), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 92), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 92), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 98), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 98), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 52), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 52), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 54), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 54), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 55), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 55), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 54), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 54), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 20), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 20), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 20), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 20), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 23), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 23), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 21), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 21), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 60), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 60), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 23), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 23), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 61), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 61), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 25), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 25), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 6), - [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 6), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 37), - [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 37), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 79), - [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 79), - [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 26), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 26), - [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 54), - [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 54), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 13), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 13), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 62), - [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 62), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 71), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 71), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 27), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 27), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 14), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 14), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 76), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 76), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 91), - [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 91), - [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 80), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 80), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 29), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 29), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 30), - [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 30), - [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 30), - [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 30), - [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 63), - [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 63), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 4), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 46), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 46), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 78), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 78), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 45), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 45), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 90), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 90), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 47), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 47), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 48), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 48), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(83), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 101), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 101), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 94), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 94), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 95), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 95), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 105), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 105), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(119), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(192), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), + [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(40), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1005), + [856] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), SHIFT(89), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(262), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(89), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 6), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 6), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(165), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 19), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(226), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(127), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 28), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 28), + [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 19), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 24), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 24), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 103), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 103), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 6), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 6), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 62), + [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 62), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 54), + [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 54), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 29), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 29), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 76), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 76), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 21), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 21), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 71), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 71), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 62), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 62), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 23), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 23), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 54), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 54), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 25), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 25), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 26), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 26), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 91), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 91), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 52), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 52), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 80), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 80), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 27), + [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 27), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 3), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 3), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 55), + [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 55), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 60), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 60), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 61), + [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 61), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 30), + [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 30), + [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 30), + [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 30), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 23), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 23), + [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 96), + [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 96), + [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 20), + [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 20), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 54), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 54), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 88), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 88), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 88), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 88), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 92), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 92), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 20), + [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 20), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), + [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 14), + [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 14), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 98), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 98), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 79), + [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 79), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 13), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 13), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 37), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 37), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 63), + [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 63), + [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 6), + [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 6), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 4), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 90), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 90), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(83), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 78), + [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 78), + [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 48), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 48), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 47), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 47), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 46), + [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 46), + [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 45), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 45), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 105), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 105), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 94), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 94), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 95), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 95), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 101), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 101), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(248), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(126), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(250), - [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 9), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 9), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 9), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 9), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 8), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 8), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), - [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 18), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 89), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 7), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 7), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 6), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 6), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 10), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 10), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 11), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 11), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 7), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 7), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 15), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 16), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 16), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 31), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 31), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 32), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 32), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 38), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 38), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 39), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 39), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 40), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 40), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 41), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 41), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 42), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 43), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 43), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 44), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 44), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 49), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 49), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 50), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 50), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 44), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 51), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 51), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 17), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 17), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 64), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 64), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 72), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 72), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 73), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 73), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 74), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 74), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 75), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 75), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 73), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 73), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 77), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 77), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 32), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 32), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 81), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 81), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 87), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 87), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), REDUCE(sym_assignment_expression, 3, 0, 42), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), - [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 42), REDUCE(sym_assignment_expression, 3, 0, 42), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 42), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 59), - [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 59), SHIFT(223), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 42), - [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), REDUCE(sym_assignment_expression, 3, 0, 15), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 18), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), - [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(193), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 9), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 9), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 9), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 9), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 8), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 8), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), + [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 18), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 75), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 75), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 89), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 51), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 87), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 87), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 38), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 38), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 32), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 32), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 31), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 31), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 81), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 81), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 32), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 32), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 39), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 39), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 77), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 77), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 73), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 73), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 40), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 40), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 16), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 16), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 15), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 41), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 41), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 74), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 7), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 7), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 42), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 11), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 11), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 43), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 43), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 44), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 44), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 51), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 74), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 73), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 73), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 72), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 10), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 10), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 6), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 6), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 72), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 7), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 7), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 64), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 64), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 49), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 49), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 50), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 50), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 44), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 17), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 17), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), REDUCE(sym_assignment_expression, 3, 0, 15), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 42), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 42), REDUCE(sym_assignment_expression, 3, 0, 42), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 42), + [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), REDUCE(sym_assignment_expression, 3, 0, 42), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 59), + [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 59), SHIFT(195), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 57), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 59), SHIFT(253), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 18), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 57), + [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 59), SHIFT(156), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1238), - [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1001), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), - [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(843), - [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(237), - [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1276), - [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1222), - [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1230), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(883), - [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1115), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1354), - [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(870), - [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(961), - [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(901), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1247), + [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1001), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(848), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(230), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1339), + [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1238), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1230), + [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(891), + [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1126), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1285), + [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(876), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(952), + [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(903), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(1469), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [2128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 99), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 99), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 98), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 98), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 104), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 104), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 76), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 76), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(1418), + [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 99), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 99), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 93), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 93), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 76), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 76), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 88), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 88), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 98), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 98), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 104), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 104), [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 58), [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 58), [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 83), [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 83), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 88), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 88), - [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 93), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 93), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 45), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 45), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 38), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 38), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 6), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 6), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), - [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), SHIFT_REPEAT(934), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), - [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), SHIFT_REPEAT(1354), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 34), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 34), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 10), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 10), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(95), - [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1090), - [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1020), - [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1169), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), SHIFT_REPEAT(1073), - [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), SHIFT_REPEAT(97), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), - [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), SHIFT_REPEAT(1073), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 4), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 4), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 18), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 64), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1, 0, 0), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 66), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 68), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 45), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 45), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 32), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 36), - [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1118), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(114), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(268), - [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 85), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [2717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(250), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 33), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 33), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [2760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(192), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 22), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 4), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 4), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1189), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1190), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1198), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), - [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1198), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1205), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), - [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1205), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(88), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(851), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(854), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(1308), - [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [3106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1131), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 57), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1105), - [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 20), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 82), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, 0, 97), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 82), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 67), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 84), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 86), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3337] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 34), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 34), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), + [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), SHIFT_REPEAT(941), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), + [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), SHIFT_REPEAT(1285), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 38), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 38), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 45), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 45), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 6), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 6), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 10), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 10), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(98), + [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), + [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1020), + [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1137), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), SHIFT_REPEAT(1063), + [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), SHIFT_REPEAT(97), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), + [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), SHIFT_REPEAT(1063), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 4), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 4), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 18), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [2628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1641), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(130), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 32), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 68), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 66), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 64), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 45), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 45), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1, 0, 0), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 85), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 36), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1132), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 4), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 4), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(193), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 33), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 33), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(248), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 22), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1184), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1184), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1079), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [2960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1232), + [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1232), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [2989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1249), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [2998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1252), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(90), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [3025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(1264), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(853), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 20), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 57), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [3128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(100), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 82), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 82), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 84), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 86), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 67), + [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, 0, 97), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3383] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index 077573dd..3669e46e 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -191,9 +191,7 @@ import { b } from (statement_block))))) (expression_statement (member_expression - (member_expression - (import) - (property_identifier)) + (meta_property) (property_identifier))) (import_statement (import_clause